X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=solow.h;h=38e7776991b4e1c9e4a9c657ffd83d2ce867a7e4;hp=6d58df2009be6f96a7497cca48f11ba59b2b05d6;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=37a2c0b7dc68bfa53c8f38a713259929c4c46a9f diff --git a/solow.h b/solow.h index 6d58df2..38e7776 100644 --- a/solow.h +++ b/solow.h @@ -6,7 +6,7 @@ * Mothur * * Created by Thomas Ryabin on 5/13/09. - * Copyright 2009 __MyCompanyName__. All rights reserved. + * Copyright 2009Schloss Lab UMASS Amherst. All rights reserved. * */ @@ -20,11 +20,12 @@ class Solow : public Calculator { public: - Solow(int size) : m(size), Calculator("solow", 1, false) {}; + Solow(int size) : f(size), Calculator("solow", 1, false) {}; EstOutput getValues(SAbundVector*); EstOutput getValues(vector) {return data;}; + string getCitation() { return "http://www.mothur.org/wiki/Solow"; } private: - int m; + int f; };