]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FLOW/AliFlowCommon/AliFlowCommonConstants.cxx
fix coding violations
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowCommon / AliFlowCommonConstants.cxx
CommitLineData
f1d945a1 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
9ba489f7 20#include "AliFlowCommonConstants.h"
21#include "TMath.h"
f1d945a1 22
23// AliFlowCommonConstants:
24//
25// Constants for the common histograms in the flow analysis
26//
27// Author: Naomi van der Kolk (kolk@nikhef.nl)
28
29//ClassImp(AliFlowCommonConstants)
30
31Double_t AliFlowCommonConstants::fgMultMin = 0.;
32Double_t AliFlowCommonConstants::fgMultMax = 10000.;
33Double_t AliFlowCommonConstants::fgPtMin = 0.;
34Double_t AliFlowCommonConstants::fgPtMax = 10.;
35Double_t AliFlowCommonConstants::fgPhiMin = 0.;
9ba489f7 36Double_t AliFlowCommonConstants::fgPhiMax = TMath::TwoPi();
f1d945a1 37Double_t AliFlowCommonConstants::fgEtaMin = -2.;
38Double_t AliFlowCommonConstants::fgEtaMax = 2.;
39Double_t AliFlowCommonConstants::fgQMin = 0.;
40Double_t AliFlowCommonConstants::fgQMax = 3.;
41
42//getters
43Int_t AliFlowCommonConstants::GetNbinsMult() { return kNbinsMult; }
44Int_t AliFlowCommonConstants::GetNbinsPt() { return kNbinsPt; }
45Int_t AliFlowCommonConstants::GetNbinsPhi() { return kNbinsPhi; }
46Int_t AliFlowCommonConstants::GetNbinsEta() { return kNbinsEta; }
47Int_t AliFlowCommonConstants::GetNbinsQ() { return kNbinsQ; }
48
49//getters
50Double_t AliFlowCommonConstants::GetMultMin() { return fgMultMin; }
51Double_t AliFlowCommonConstants::GetMultMax() { return fgMultMax; }
52Double_t AliFlowCommonConstants::GetPtMin() { return fgPtMin; }
53Double_t AliFlowCommonConstants::GetPtMax() { return fgPtMax; }
54Double_t AliFlowCommonConstants::GetPhiMin() { return fgPhiMin; }
55Double_t AliFlowCommonConstants::GetPhiMax() { return fgPhiMax; }
56Double_t AliFlowCommonConstants::GetEtaMin() { return fgEtaMin; }
57Double_t AliFlowCommonConstants::GetEtaMax() { return fgEtaMax; }
58Double_t AliFlowCommonConstants::GetQMin() { return fgQMin; }
59Double_t AliFlowCommonConstants::GetQMax() { return fgQMax; }
60