]> git.donarmstrong.com Git - mothur.git/blobdiff - shen.h
pat's changes after generating wiki pages for 1.5
[mothur.git] / shen.h
diff --git a/shen.h b/shen.h
index a96abe9ba3d3222680fd5e99470a95ca6d4d472c..fa8b70030e1e9ae742f86cc4f77e00d3870dedac 100644 (file)
--- a/shen.h
+++ b/shen.h
@@ -11,7 +11,6 @@
  */
 
 #include "calculator.h"
-#include "globaldata.hpp"
 
 /* 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) {};
+       Shen(int size, int n) : m(size), abund(n), Calculator("shen", 1, false) {};
        EstOutput getValues(SAbundVector*);     
        EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
 private:
        int m;
-       GlobalData* globaldata;
+       int abund;
 };