]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/FLOW/Base/AliFlowLYZConstants.h
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWG / FLOW / Base / AliFlowLYZConstants.h
CommitLineData
f456b167 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
29b61d43 4/* $Id: AliFlowLYZConstants.h 25556 2008-05-02 08:22:51Z snelling $ */
f456b167 5
6#ifndef ALIFLOWLYZCONSTANTS_H
7#define ALIFLOWLYZCONSTANTS_H
8
9#include <TROOT.h>
10
f456b167 11// Description: constants for the LYZ flow makers
12
bee2efdc 13#include <TNamed.h>
14
15class AliFlowLYZConstants : public TNamed {
16
17public:
18 AliFlowLYZConstants();
19 virtual ~AliFlowLYZConstants();
20
21 static AliFlowLYZConstants* GetMaster();
f456b167 22
fb03b63f 23 Int_t GetNtheta() const {return fNtheta;}
24 Int_t GetNbins() const {return fNbins;}
25 Double_t GetMaxSUM() const {return fMaxSUM;}
26 Double_t GetMaxPROD() const {return fMaxPROD;}
f456b167 27
bee2efdc 28private:
29 AliFlowLYZConstants& operator= (const AliFlowLYZConstants& c);
30 AliFlowLYZConstants(const AliFlowLYZConstants& a);
f456b167 31
bee2efdc 32 //data members
33 Int_t fNtheta; // number of reference angles theta
34 Int_t fNbins; // number of bins in fHistGtheta (AliFlowLYZHist1)
35 Double_t fMaxSUM; // upper limit for fHistGtheta (AliFlowLYZHist1)
36 Double_t fMaxPROD; // upper limit for fHistGtheta (AliFlowLYZHist1)
f456b167 37
bee2efdc 38 static AliFlowLYZConstants* fgPMasterConfig;
39
40 ClassDef(AliFlowLYZConstants,1) // macro for rootcint
41};
f456b167 42
43#endif
44