]> git.donarmstrong.com Git - mothur.git/blob - shannoneven.h
changes while testing
[mothur.git] / shannoneven.h
1 #ifndef SHANNONEVEN
2 #define SHANNONEVEN
3
4 /*
5  *  shannoneven.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 ShannonEven : public Calculator  {
18         
19 public:
20         ShannonEven() : Calculator("shannoneven", 1, false) {};
21         EstOutput getValues(SAbundVector*);
22         EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
23         string getCitation() { return "http://www.mothur.org/wiki/Shannoneven"; }
24 };
25
26 /***********************************************************************/
27
28 #endif