StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
common.h
1 #ifndef common_H
2 #define common_H
3 
4 char title[200], name[200];
5 TString sTitle,sName;
6 
7 const Int_t nVarBin = 2;
8 const Int_t nWeight = 4;
9 
10 const char* border = "************************* ";
11 
12 
13 const Int_t nDcaFraction = 6;
14 Axis_t dcaFraction[nDcaFraction] = {.5,.6,.7,.8,.9,1.};
15 
16 const Int_t nValue = 8;
17 Axis_t hitValues[] = { 25,28,30,32,34,36,38,40};
18 
19 
20 Int_t nBin, nBinX, lowBin, hiBin;
21 Axis_t xMin, xMax;
22 
23 Axis_t lowPt=1.7, highPt=6.0;
24 
25 TString sPM[2];
26 sPM[0] = "plus"; sPM[1] = "minus";
27 
28 TString sEW[2];
29 sEW[0] = "East"; sEW[1] = "West";
30 
31 #endif