]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FLOW/AliFlowLYZConstants.h
Record changes.
[u/mrichter/AliRoot.git] / PWG2 / FLOW / 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
4/* $Id$ */
5
6#ifndef ALIFLOWLYZCONSTANTS_H
7#define ALIFLOWLYZCONSTANTS_H
8
9#include <TROOT.h>
10
11
12// Description: constants for the LYZ flow makers
13
14
15namespace AliFlowLYZConstants {
16
17
18 // Enumerators
19 enum {
20 kTheta = 5, // number of reference angles theta
21 kNbins = 500, // number of bins in fHistGtheta (AliFlowLYZHist1)
22 kEtaBins = 100, // number of eta bins in histograms (AliFlowLYZHist2)
23 kPtBins = 100 // number of pT bins in histograms (AliFlowLYZHist2)
24 };
25
26
27 // Histograms limits
28 extern Float_t fgMin ; // lower limit for fHistGtheta (AliFlowLYZHist1)
29 extern Float_t fgMax ; // upper limit for fHistGtheta (AliFlowLYZHist1)
30 extern Float_t fgEtaMin ; // eta lower limit for histograms
31 extern Float_t fgEtaMax ; // eta upper limit for histograms
32 extern Float_t fgPtMin ; // pT lower limit for histograms
33 extern Float_t fgPtMax ; // pT upper limit for histograms
34
35
36}
37
38#endif
39