// @(#)root/foam:$Name: $:$Id: TFoamMaxwt.h,v 1.4 2005/04/13 13:15:27 brun Exp $
// Author: S. Jadach <mailto:Stanislaw.jadach@ifj.edu.pl>, P.Sawicki <mailto:Pawel.Sawicki@ifj.edu.pl>
#ifndef ROOT_TFoamMaxwt
#define ROOT_TFoamMaxwt
//////////////////////////////////////////////////////////////////
// //
// Small auxiliary class for controlling MC weight. //
// //
//////////////////////////////////////////////////////////////////
#ifndef ROOT_TObject
#include "TObject.h"
#endif
class TH1D;
class TFoamMaxwt : public TObject {
private:
Double_t fNent; // No. of MC events
Int_t fnBin; // No. of bins on the weight distribution
Double_t fwmax; // Maximum analyzed weight
public:
TH1D *fWtHst1; // Histogram of the weight wt
TH1D *fWtHst2; // Histogram of wt filled with wt
public:
TFoamMaxwt(); // NOT IMPLEMENTED (NEVER USED)
TFoamMaxwt(Double_t, Int_t); // Principal Constructor
TFoamMaxwt(TFoamMaxwt &From); // Copy constructor
virtual ~TFoamMaxwt(); // Destructor
void Reset(); // Reset
TFoamMaxwt& operator =(TFoamMaxwt &); // operator =
void Fill(Double_t);
void Make(Double_t, Double_t&);
void GetMCeff(Double_t, Double_t&, Double_t&); // get MC efficiency= <w>/wmax
ClassDef(TFoamMaxwt,1); //Controlling of the MC weight (maximum weight)
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1