X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=qstat.h;fp=qstat.h;h=3911dc14f1905ad106e1c426f28c017de6406040;hb=eb1c88346fb246e95a6b38935b103f95e38b82ca;hp=0000000000000000000000000000000000000000;hpb=d53f63d7e0d9c3feeb8ded5a74e6c150fae50fe9;p=mothur.git diff --git a/qstat.h b/qstat.h new file mode 100644 index 0000000..3911dc1 --- /dev/null +++ b/qstat.h @@ -0,0 +1,32 @@ +#ifndef QSTAT_H +#define QSTAT_H +/* + * qstat.h + * Mothur + * + * Created by Thomas Ryabin on 3/4/09. + * Copyright 2009 __MyCompanyName__. All rights reserved. + * + */ +#include "calculator.h" + +/*This class implements the LogSD estimator on single group. +It is a child of the calculator class.*/ + +/***********************************************************************/ + +class QStat : public Calculator { + +public: + QStat() : Calculator("qstat", 3) {}; + EstOutput getValues(SAbundVector*); + EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;}; + +private: + RAbundVector rdata; +}; + +/***********************************************************************/ + +#endif +