/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ #ifndef AliFlowLYZHist1_H #define AliFlowLYZHist1_H #include "TComplex.h" //explicitly called in void Fill(Float_t f, TComplex C); class TH1D; // Description: Class to organise histograms for Flow // by the LeeYangZeros method in the first run. // Also includes methods to find the first minimum R0 // in the generating function. class AliFlowLYZHist1 { public: AliFlowLYZHist1(Int_t theta); //constructor virtual ~AliFlowLYZHist1(); //destructor void Fill(Double_t f, TComplex C); //fill the histograms TH1D* FillGtheta(); //fills fHistGtheta Double_t GetR0(); //get R0 Double_t GetBinCenter(Int_t i); //Get a bincentre of fHistGtheta Int_t GetNBins(); //Gets fNbins private: TH1D* fHistGtheta; //! TProfile* fHistProReGtheta; //! TProfile* fHistProImGtheta; //! ClassDef(AliFlowLYZHist1,0) // macro for rootcint }; #endif