]> git.donarmstrong.com Git - mothur.git/blobdiff - shen.h
added shen calculator
[mothur.git] / shen.h
diff --git a/shen.h b/shen.h
new file mode 100644 (file)
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<SharedRAbundVector*>) {return data;};
+private:
+       int m;
+};
+
+
+/***********************************************************************/
+
+#endif