]> git.donarmstrong.com Git - mothur.git/blob - sharedmorisitahorn.h
removed "shared" from some of the calculator names and classes
[mothur.git] / sharedmorisitahorn.h
1 #ifndef MORHORN_H
2 #define MORHORN_H
3 /*
4  *  sharedmorisitahorn.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 3/24/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12
13 #include "calculator.h"
14
15 /***********************************************************************/
16
17 class MorHorn : public Calculator  {
18         
19 public:
20         MorHorn() :  Calculator("MorisitaHorn", 1) {};
21         EstOutput getValues(SAbundVector*) {return data;};
22         EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*);
23 private:
24         
25 };
26
27 /***********************************************************************/
28
29 #endif
30