26 o <<
"Usage: Post(SIM,REAL,OUT,PROC,VIZ,N)\n" 28 <<
" SIM Simulation data file \n" 29 <<
" REAL Real data file \n" 30 <<
" OUTPUT (optional) Output name \n" 31 <<
" PROC (optional) processing options \n" 32 <<
" VIZ (optional) visualisation options \n" 33 <<
" N (optional) max number of centrality bins \n" 35 o <<
"Processing options:\n" 37 <<
" 0x0001 Do scaling by unity\n" 38 <<
" 0x0002 Do scaling by full average\n" 39 <<
" 0x0004 Do scaling by eta differential\n" 40 <<
" 0x0008 Do scaling by fully differential\n" 41 <<
" 0x0010 Correct for decay of strange to secondary \n" 42 <<
" 0x0020 Correct for fake tracklets\n" 43 <<
" 0x0040 Correct for non-flat centrality in each bin\n" 44 <<
" 0x1000 MC closure test\n" 46 o <<
"Visualization options:\n" 48 <<
" 0x0001 Draw general information\n" 49 <<
" 0x0002 Draw parameters\n" 50 <<
" 0x0004 Draw weights\n" 51 <<
" 0x0008 Draw dNch/deta\n" 52 <<
" 0x0010 Draw alphas\n" 53 <<
" 0x0020 Draw delta information\n" 54 <<
" 0x0040 Draw backgrounds\n" 55 <<
" 0x0100 Whether to make a PDF\n" 56 <<
" 0x0200 Whether to pause after each plot\n" 57 <<
" 0x0400 Draw in landscape\n" 58 <<
" 0x0800 Alternative markers\n" 77 if (
gSystem->GetPathInfo(inp, 0, (Long_t*)0, &flags, 0) != 0) {
78 Warning(
"FormatInput",
"Cannot stat %s", inp);
81 Info(
"FormatInput",
"Input=%s stat=0x%x", inp, flags);
84 tmp.Form(
"%s/tracklet_dndeta.root", inp);
132 const char* output=0,
138 if (
TString(sim) .Contains(
"help",TString::kIgnoreCase) ||
139 TString(real).Contains(
"help",TString::kIgnoreCase)) {
144 TString fwd =
"$ALICE_PHYSICS/PWGLF/FORWARD/analysis2/dndeta/tracklets3";
145 if (
gSystem->Getenv(
"ANA_SRC")) fwd =
"$ANA_SRC/dndeta/tracklets3";
148 gSystem->AddIncludePath(Form(
"-I%s",fwd.Data()));
149 gROOT->LoadMacro(Form(
"%s/AliTrackletAODUtils.C++g",fwd.Data()));
150 gROOT->LoadMacro(Form(
"%s/AliTrackletdNdeta2.C++g",fwd.Data()));
156 TString outFile(output && output[0] !=
'\0' ? output :
157 Form(
"%s_%s",realShrt.Data(),simShrt.Data()));
158 if (proc & 0x1) outFile.Append(
"_unit");
159 if (proc & 0x2) outFile.Append(
"_const");
160 if (proc & 0x4) outFile.Append(
"_eta");
161 if (proc & 0x8) outFile.Append(
"_etaipz");
163 Printf(
"===========================================\n" 164 " Real data file: %s\n" 165 " Simulation data file: %s\n" 166 " Output directory: %s\n" 167 "===========================================",
168 realFile.Data(), simFile.Data(), outFile.Data());
172 p->
Run(proc,viz,n,realFile,simFile,outFile);
175 Printf(
"Extracting GraphSysErr object(s)");
176 gROOT->LoadMacro(Form(
"%s/ExtractGSE2.C",fwd.Data()));
179 Printf(
"All output stored in %s", outFile.Data());
void Run(UInt_t proc=kDefaultProc, UInt_t viz=kDefaultViz, UShort_t maxBins=9, const char *dataName="data.root", const char *simName="sim.root", const char *output=0, Double_t fudge=1)
const TString & FormatInput(const char *inp, TString &shrt)
void Usage(std::ostream &o)
void Post(const char *sim, const char *real, const char *output=0, UInt_t proc=0x2, UInt_t viz=0x32f, UInt_t n=10, UInt_t sNN=5023)