1 #ifndef INVSIMPSON
2 #define INVSIMPSON
3 
4 /*
5  *  invsimpson.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 8/20/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12 
13 
14 
15 #include "calculator.h"
16 
17 /***********************************************************************/
18 
19 class InvSimpson : public Calculator  {
20 
21 public:
InvSimpson()22 	InvSimpson() : Calculator("invsimpson", 3, false) {};
23 	EstOutput getValues(SAbundVector*);
getValues(vector<SharedRAbundVector * >)24 	EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
getCitation()25 	string getCitation() { return "http://www.mothur.org/wiki/InvSimpson"; }
26 };
27 
28 /***********************************************************************/
29 
30 #endif
31