2 * Read in AOD and generate @f$ dN/d\eta@f$ for the selected
3 * trigger classes and vertex ranges
5 * @param file Input file (AOD)
6 * @param triggers Triggers to investigate
7 * @param energy Energy (only used for comparisons)
8 * @param vzMin Minimum interaction point z coordinate
9 * @param vzMax Maximum interaction point z coordinate
10 * @param rebin How many bins to group
11 * @param title Title to put on the plot
13 * @ingroup pwg2_forward_analysis_scripts
16 Pass2(const char* file="AliAODs.root",
17 const char* triggers="INEL",
26 gROOT->LoadMacro("$ALICE_ROOT/PWG2/FORWARD/analysis2/Compile.C");
27 Compile("$ALICE_ROOT/PWG2/FORWARD/analysis2/DrawRes.C","g");
30 TString trgs(triggers);
33 TIter next(trgs.Tokenize(" ,|"));
34 while ((trg = static_cast<TObjString*>(next()))) {
35 TString s(trg->GetString());
36 if (s.IsNull()) continue;
37 if (s.CompareTo("INEL") == 0) trgMask = AliAODForwardMult::kInel;
38 else if (s.CompareTo("INEL>0")== 0) trgMask = AliAODForwardMult::kInelGt0;
39 else if (s.CompareTo("NSD") == 0) trgMask = AliAODForwardMult::kNSD;
41 Warning("Pass2", "Unknown trigger %s", s.Data());
48 printf("--------------------------------------\n"
49 "Settings for this:\n"
51 " Vertex range: %+4.1f -> %+4.1f cm\n"
53 " Trigger mask: 0x%02x (%s)\n"
58 "--------------------------------------\n",
59 file, vzMin, vzMax, rebin, trgMask, trgs.Data(), energy, title,
60 hhd ? "yes" : "no", comp ? "yes" : "no");
65 dr.Run(file, vzMin, vzMax, rebin, trgMask, energy, title, hhd, comp);