]> git.donarmstrong.com Git - mothur.git/blobdiff - ace.h
Initial revision
[mothur.git] / ace.h
diff --git a/ace.h b/ace.h
new file mode 100644 (file)
index 0000000..19188fa
--- /dev/null
+++ b/ace.h
@@ -0,0 +1,33 @@
+#ifndef ACE_H
+#define ACE_H
+
+/*
+ *  ace.h
+ *  Dotur
+ *
+ *  Created by Sarah Westcott on 1/7/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+/* This class implements the Ace estimator on a single group. 
+It is a child of the calculator class. */
+
+#include <Carbon/Carbon.h>
+#include "calculator.h"
+
+/***********************************************************************/
+
+class Ace : public Calculator  {
+       
+public:
+       Ace(int n=10) : abund(n), Calculator("ACE", 3) {};
+       EstOutput getValues(SAbundVector*);
+       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;};
+private:
+       int abund;
+};
+
+/***********************************************************************/
+
+#endif