]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FLOW/AliFlowCommon/AliFlowCommonConstants.h
simulate partial acceptance
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowCommon / 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 {
9ba489f7 16
f1d945a1 17 // Enumerators
18 enum {
19 kNbinsMult = 10000,
20 kNbinsPt = 100,
9ba489f7 21 kNbinsPhi = 72,
f1d945a1 22 kNbinsEta = 80,
23 kNbinsQ = 500
24 };
25
26 //getters
27 Int_t GetNbinsMult();
28 Int_t GetNbinsPt();
29 Int_t GetNbinsPhi();
30 Int_t GetNbinsEta();
31 Int_t GetNbinsQ();
32
33 // Histograms limits
34 extern Double_t fgMultMin ;
35 extern Double_t fgMultMax ;
36 extern Double_t fgPtMin ;
37 extern Double_t fgPtMax ;
38 extern Double_t fgPhiMin ;
39 extern Double_t fgPhiMax ;
40 extern Double_t fgEtaMin ;
41 extern Double_t fgEtaMax ;
42 extern Double_t fgQMin ;
43 extern Double_t fgQMax ;
44
45 //getters
46 Double_t GetMultMin();
47 Double_t GetMultMax();
48 Double_t GetPtMin();
49 Double_t GetPtMax();
50 Double_t GetPhiMin();
51 Double_t GetPhiMax();
52 Double_t GetEtaMin();
53 Double_t GetEtaMax();
54 Double_t GetQMin();
55 Double_t GetQMax();
56
57
58
59 //ClassDef(AliFlowCommonConstants,0) // macro for rootcint
9ba489f7 60
f1d945a1 61}
62
63#endif
64
65