Warning, file /include/root/TFoamMaxwt.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004 #ifndef ROOT_TFoamMaxwt
0005 #define ROOT_TFoamMaxwt
0006
0007 #include "TObject.h"
0008
0009 class TH1D;
0010
0011
0012 class TFoamMaxwt : public TObject {
0013 private:
0014 Double_t fNent;
0015 Int_t fnBin;
0016 Double_t fwmax;
0017 public:
0018 TH1D *fWtHst1;
0019 TH1D *fWtHst2;
0020
0021 public:
0022 TFoamMaxwt();
0023 TFoamMaxwt(Double_t, Int_t);
0024 TFoamMaxwt(TFoamMaxwt &From);
0025 ~TFoamMaxwt() override;
0026 void Reset();
0027 TFoamMaxwt& operator=(const TFoamMaxwt &);
0028 void Fill(Double_t);
0029 void Make(Double_t, Double_t&);
0030 void GetMCeff(Double_t, Double_t&, Double_t&);
0031
0032 ClassDefOverride(TFoamMaxwt,1);
0033 };
0034 #endif