X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=solow.h;fp=solow.h;h=6d58df2009be6f96a7497cca48f11ba59b2b05d6;hb=37a2c0b7dc68bfa53c8f38a713259929c4c46a9f;hp=0000000000000000000000000000000000000000;hpb=526a868606faa50caf86e7399f7554c0335b39e5;p=mothur.git diff --git a/solow.h b/solow.h new file mode 100644 index 0000000..6d58df2 --- /dev/null +++ b/solow.h @@ -0,0 +1,33 @@ +#ifndef SOLOW_H +#define SOLOW_H + +/* + * solow.h + * Mothur + * + * Created by Thomas Ryabin on 5/13/09. + * Copyright 2009 __MyCompanyName__. All rights reserved. + * + */ + +#include "calculator.h" + +/* This class implements the solow calculator on single group. + It is a child of the calculator class. */ + +/***********************************************************************/ + +class Solow : public Calculator { + +public: + Solow(int size) : m(size), Calculator("solow", 1, false) {}; + EstOutput getValues(SAbundVector*); + EstOutput getValues(vector) {return data;}; +private: + int m; +}; + + +/***********************************************************************/ + +#endif