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