00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef StHbtFsiWeight_hh
00017 #define StHbtFsiWeight_hh
00018
00019 #include "StHbtMaker/Infrastructure/StHbtTypes.hh"
00020
00021 class StHbtThPair;
00022
00023
00024 class StHbtFsiWeight {
00025 public:
00026 StHbtFsiWeight();
00027 virtual ~StHbtFsiWeight();
00028
00029
00030
00031 virtual double GetWeight(const StHbtThPair* aThPair)=0;
00032
00033 virtual double GetWeightDen();
00034
00035 virtual StHbtString Report();
00036
00037 protected:
00038 double mWeightDen;
00039
00040 #ifdef __ROOT__
00041 ClassDef(StHbtFsiWeight,1)
00042 #endif
00043 };
00044
00045 #endif