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