X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=solow.h;fp=solow.h;h=0000000000000000000000000000000000000000;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hp=38e7776991b4e1c9e4a9c657ffd83d2ce867a7e4;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76;p=mothur.git diff --git a/solow.h b/solow.h deleted file mode 100644 index 38e7776..0000000 --- a/solow.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef SOLOW_H -#define SOLOW_H - -/* - * solow.h - * Mothur - * - * Created by Thomas Ryabin on 5/13/09. - * Copyright 2009Schloss Lab UMASS Amherst. All rights reserved. - * - */ - -#include "calculator.h" - -/* This class implements the solow calculator on single group. - It is a child of the calculator class. */ - -/***********************************************************************/ - -class Solow : public Calculator { - -public: - Solow(int size) : f(size), Calculator("solow", 1, false) {}; - EstOutput getValues(SAbundVector*); - EstOutput getValues(vector) {return data;}; - string getCitation() { return "http://www.mothur.org/wiki/Solow"; } -private: - int f; -}; - - -/***********************************************************************/ - -#endif