X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=shen.h;fp=shen.h;h=4a97805e9b293fab7e0b6cb3854dead3cf01c2c1;hb=2bb51be6ba6a3fa741f2131d328cf21c395b506a;hp=0000000000000000000000000000000000000000;hpb=b02ee39bf6c708a98748f8861846cdec7fab58ac;p=mothur.git diff --git a/shen.h b/shen.h new file mode 100644 index 0000000..4a97805 --- /dev/null +++ b/shen.h @@ -0,0 +1,33 @@ +#ifndef SHEN_H +#define SHEN_H + +/* + * shen.h + * Mothur + * + * Created by Thomas Ryabin on 5/18/09. + * Copyright 2009 __MyCompanyName__. All rights reserved. + * + */ + +#include "calculator.h" + +/* This class implements the shen calculator on single group. + It is a child of the calculator class. */ + +/***********************************************************************/ + +class Shen : public Calculator { + +public: + Shen(int size) : m(size), Calculator("shen", 1, false) {}; + EstOutput getValues(SAbundVector*); + EstOutput getValues(vector) {return data;}; +private: + int m; +}; + + +/***********************************************************************/ + +#endif