]> git.donarmstrong.com Git - mothur.git/blobdiff - geom.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / geom.h
diff --git a/geom.h b/geom.h
deleted file mode 100644 (file)
index a07676b..0000000
--- a/geom.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef GEOM_H
-#define GEOM_H
-
-/*
- *  geom.h
- *  Mothur
- *
- *  Created by Thomas Ryabin on 2/23/09.
- *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
- *
- */
-#include "calculator.h"
-
-/* This class implements the geometric estimator on single group. 
-It is a child of the calculator class. */
-
-/***********************************************************************/
-
-class Geom : public Calculator  {
-       
-public:
-
-       Geom() : Calculator("geometric", 3, false) {};
-
-       EstOutput getValues(SAbundVector*);
-       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
-       string getCitation() { return "http://www.mothur.org/wiki/Geometric"; }
-private:
-       double kEq(double, double);
-       RAbundVector getRAbundVector(SAbundVector*);
-       RAbundVector rdata;
-};
-
-/***********************************************************************/
-
-#endif
-
-
-
-
-