00001
00002
00004 #ifndef __Rank__
00005 #define __Rank__
00006
00007 #include "ReadCoinc.h"
00008
00009 using namespace std;
00010
00011 class Rank : public ReadCoinc{
00012
00013 public:
00014
00015 Rank(const string aCoincFilePattern, Network *aNet, const int aVerbose=0);
00016 virtual ~Rank(void);
00017
00018
00019 bool ComputeRank(const string RankType);
00020
00021
00022 bool SaveRank(const string RootFileName);
00023
00024
00025
00026 protected:
00027
00028
00029 bool GaussianRank(void);
00030 TTree *rank;
00031 double rk;
00032
00033 ClassDef(Rank,0)
00034 };
00035
00036 #endif
00037
00038