]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FLOW/AliFlowCommonConstants.h
new methods and possiility to run all methods in same run
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowCommonConstants.h
CommitLineData
f1d945a1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4/* $Id$ */
5
6#ifndef ALIFLOWCOMMONCONSTANTS_H
7#define ALIFLOWCOMMONCONSTANTS_H
8
9#include <TROOT.h>
10
11// AliFlowCommonConstants:
12// Description: constants for the Common Histograms in the Flow Analysis
13// Author: Naomi van der Kolk (kolk@nikhef.nl)
14
15namespace AliFlowCommonConstants {
16
17
18 // Enumerators
19 enum {
20 kNbinsMult = 10000,
21 kNbinsPt = 100,
22 kNbinsPhi = 70,
23 kNbinsEta = 80,
24 kNbinsQ = 500
25 };
26
27 //getters
28 Int_t GetNbinsMult();
29 Int_t GetNbinsPt();
30 Int_t GetNbinsPhi();
31 Int_t GetNbinsEta();
32 Int_t GetNbinsQ();
33
34 // Histograms limits
35 extern Double_t fgMultMin ;
36 extern Double_t fgMultMax ;
37 extern Double_t fgPtMin ;
38 extern Double_t fgPtMax ;
39 extern Double_t fgPhiMin ;
40 extern Double_t fgPhiMax ;
41 extern Double_t fgEtaMin ;
42 extern Double_t fgEtaMax ;
43 extern Double_t fgQMin ;
44 extern Double_t fgQMax ;
45
46 //getters
47 Double_t GetMultMin();
48 Double_t GetMultMax();
49 Double_t GetPtMin();
50 Double_t GetPtMax();
51 Double_t GetPhiMin();
52 Double_t GetPhiMax();
53 Double_t GetEtaMin();
54 Double_t GetEtaMax();
55 Double_t GetQMin();
56 Double_t GetQMax();
57
58
59
60 //ClassDef(AliFlowCommonConstants,0) // macro for rootcint
61 //};
62}
63
64#endif
65
66