00001 #ifndef common_H
00002 #define common_H
00003
00004 char title[200], name[200];
00005 TString sTitle,sName;
00006
00007 const Int_t nVarBin = 2;
00008 const Int_t nWeight = 4;
00009
00010 const char* border = "************************* ";
00011
00012
00013 const Int_t nDcaFraction = 6;
00014 Axis_t dcaFraction[nDcaFraction] = {.5,.6,.7,.8,.9,1.};
00015
00016 const Int_t nValue = 8;
00017 Axis_t hitValues[] = { 25,28,30,32,34,36,38,40};
00018
00019
00020 Int_t nBin, nBinX, lowBin, hiBin;
00021 Axis_t xMin, xMax;
00022
00023 Axis_t lowPt=1.7, highPt=6.0;
00024
00025 TString sPM[2];
00026 sPM[0] = "plus"; sPM[1] = "minus";
00027
00028 TString sEW[2];
00029 sEW[0] = "East"; sEW[1] = "West";
00030
00031 #endif