]> git.donarmstrong.com Git - mothur.git/blobdiff - raredisplay.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / raredisplay.h
diff --git a/raredisplay.h b/raredisplay.h
deleted file mode 100644 (file)
index a875962..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef RAREDISPLAY_H
-#define RAREDISPLAY_H
-
-#include "sabundvector.hpp"
-#include "calculator.h"
-#include "fileoutput.h"
-#include "display.h"
-
-/***********************************************************************/
-
-class RareDisplay : public Display {
-       
-public:
-       RareDisplay(Calculator* calc, FileOutput* file) : estimate(calc), output(file), nIters(1), index(0) {};
-       ~RareDisplay()                                  {       delete estimate; delete output;         };
-       void init(string);
-       void reset();
-       void update(SAbundVector*);
-       void update(vector<SharedRAbundVector*> shared, int numSeqs, int numGroupComb);
-       void close();
-       bool isCalcMultiple() { return estimate->getMultiple(); }
-       
-       void outputTempFiles(string);
-       void inputTempFiles(string);
-       
-private:
-       Calculator* estimate;
-       FileOutput* output;
-       string label;
-       vector<int> seqs;  
-       vector<double> results;
-       vector<double> var;
-       int index, nIters;
-};
-
-#endif
-