]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FLOW/AliFlowCommonConstants.cxx
gain set to 1 for all ch
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowCommonConstants.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /*
17 $Log$
18 */ 
19
20 #include "AliFlowCommonConstants.h"  
21
22 // AliFlowCommonConstants:
23 //
24 // Constants for the common histograms in the flow analysis
25 //
26 // Author: Naomi van der Kolk (kolk@nikhef.nl)
27
28 //ClassImp(AliFlowCommonConstants)
29
30 Double_t AliFlowCommonConstants::fgMultMin =  0.;            
31 Double_t AliFlowCommonConstants::fgMultMax = 10000.;
32 Double_t AliFlowCommonConstants::fgPtMin   =  0.;            
33 Double_t AliFlowCommonConstants::fgPtMax   = 10.;
34 Double_t AliFlowCommonConstants::fgPhiMin  =  0.;            
35 Double_t AliFlowCommonConstants::fgPhiMax  =  7.;
36 Double_t AliFlowCommonConstants::fgEtaMin  = -2.;            
37 Double_t AliFlowCommonConstants::fgEtaMax  =  2.;            
38 Double_t AliFlowCommonConstants::fgQMin    =  0.;            
39 Double_t AliFlowCommonConstants::fgQMax    =  3.;
40
41 //getters
42 Int_t AliFlowCommonConstants::GetNbinsMult() { return kNbinsMult; }
43 Int_t AliFlowCommonConstants::GetNbinsPt()   { return kNbinsPt; }
44 Int_t AliFlowCommonConstants::GetNbinsPhi()  { return kNbinsPhi; }
45 Int_t AliFlowCommonConstants::GetNbinsEta()  { return kNbinsEta; }
46 Int_t AliFlowCommonConstants::GetNbinsQ()    { return kNbinsQ; }
47  
48 //getters
49 Double_t AliFlowCommonConstants::GetMultMin() { return fgMultMin; }
50 Double_t AliFlowCommonConstants::GetMultMax() { return fgMultMax; }
51 Double_t AliFlowCommonConstants::GetPtMin()   { return fgPtMin; }
52 Double_t AliFlowCommonConstants::GetPtMax()   { return fgPtMax; }
53 Double_t AliFlowCommonConstants::GetPhiMin()  { return fgPhiMin; }
54 Double_t AliFlowCommonConstants::GetPhiMax()  { return fgPhiMax; }
55 Double_t AliFlowCommonConstants::GetEtaMin()  { return fgEtaMin; }
56 Double_t AliFlowCommonConstants::GetEtaMax()  { return fgEtaMax; }
57 Double_t AliFlowCommonConstants::GetQMin()    { return fgQMin; }
58 Double_t AliFlowCommonConstants::GetQMax()    { return fgQMax; }
59