00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef StHbtFsiLednickyPurity_hh
00019 #define StHbtFsiLednickyPurity_hh
00020
00021 #include "TRandom.h"
00022 #include "StHbtMaker/Base/StHbtFsiWeight.hh"
00023 #include "StHbtMaker/Infrastructure/StHbtTypes.hh"
00024 #include "StHbtMaker/Base/StHbtThPair.hh"
00025 #include "StHbtMaker/ThCorrFctn/StHbtFsiLednicky.h"
00026
00027 class StHbtFsiLednickyPurity : public StHbtFsiLednicky {
00028 public:
00029
00030 StHbtFsiLednickyPurity();
00031
00032 ~StHbtFsiLednickyPurity();
00033
00034
00035
00036 virtual double GetWeight(const StHbtThPair* aThPair);
00037
00038
00039
00040
00041 void SetPurity(const double aPurity);
00042 void SetPurity(const double aPurity1, const double aPurity2);
00043
00044 virtual StHbtString Report();
00045
00046 protected:
00047
00048
00049 double mPurity1, mPurity2;
00050
00051 TRandom mRandom;
00052
00053 #ifdef __ROOT__
00054 ClassDef(StHbtFsiLednickyPurity,1)
00055 #endif
00056 };
00057
00058 #endif