]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/macros/AnalysisTrainNew.C
Changing to centrality dependent corrections
[u/mrichter/AliRoot.git] / ANALYSIS / macros / AnalysisTrainNew.C
CommitLineData
a42c0df6 1//===================== ANALYSIS TRAIN =========================================
c6e7c68c 2// To use: copy this macro to your work directory, modify the global part to match
3// your needs, then run root.
4// root[0] .L AnalysisTrain.C
5// Grid full mode as below (other modes: test, offline, submit, terminate)
6// root[1] AnalysisTrainNew("grid", "full")
7// CAF mode (requires root v5-23-02 + aliroot v4-16-Rev08)
8// root[2] AnalysisTrainNew("proof")
15dac83a 9// Local mode requires AliESds.root or AliAOD.root in ./data directory
c6e7c68c 10// root[3] AnalysisTrainNew("local")
7581b1bc 11// In proof and grid modes, a token is needed and sourcing the produced environment file.
a42c0df6 12//
13// If 'saveTrain' flag is set, the train will generate a directory name and run
14// in this directory. A configuration file 'ConfigTrain.C' will be generated.
15// One can replay at any time the train via:
16// root[1] AnalysisTrainNew(ana_mode, plugin_mode, "train_default_<date>/ConfigTrain.C")
c6e7c68c 17
a42c0df6 18//================== TRAIN NAME ============================================
f362f3b6 19TString train_name = "FILTER_DATA"; // *CHANGE ME* (no blancs or special characters)
20TString job_tag = "FILTER_DATA: data ESD + PhysSel + Tender -> AOD + Muons + Vertices"; // *CHANGE ME*
a42c0df6 21//==============================================================================
22
23// ### Settings that make sense in PROOF only
24//==============================================================================
25TString proof_cluster = "alicecaf.cern.ch";
26Bool_t useAFPAR = kFALSE; // use AF special par file
6e428ea7 27TString AFversion = "AF-v4-17";
7581b1bc 28// Change CAF dataset here
a42c0df6 29TString proof_dataset = "/COMMON/COMMON/LHC09a4_run8100X#/esdTree";
b160b576 30TString proof_outdir = "";
c6e7c68c 31
a42c0df6 32// ### Settings that make sense when using the Alien plugin
33//==============================================================================
f362f3b6 34Int_t runOnData = 1; // Set to 1 if processing real data
e7c25d04 35Int_t iCollision = 0; // 0=pp, 1=Pb-Pb
a42c0df6 36Bool_t usePLUGIN = kTRUE; // do not change
4d670889 37Bool_t useProductionMode = kTRUE; // use the plugin in production mode
a42c0df6 38// Usage of par files ONLY in grid mode and ONLY if the code is not available
7581b1bc 39// in the deployed AliRoot versions. Par file search path: local dir, if not there $ALICE_ROOT.
40// To refresh par files, remove the ones in the workdir, then do "make <target.par>" in
41// AliRoot.
a42c0df6 42Bool_t usePAR = kFALSE; // use par files for extra libs
43Bool_t useCPAR = kFALSE; // use par files for common libs
f362f3b6 44TString root_version = "v5-27-05"; // *CHANGE ME IF MORE RECENT IN GRID*
45TString aliroot_version = "v4-20-06-AN-1"; // *CHANGE ME IF MORE RECENT IN GRID*
a42c0df6 46// Change production base directory here
f362f3b6 47TString alien_datadir = "/alice/data/2010/LHC10d";
371c967e 48// AliEn output directory. If blank will become output_<train_name>
f362f3b6 49//TString alien_outdir = "/alice/data/2010/LHC10b/AOD1";
50TString alien_outdir = "";
e7c25d04 51// Output folder to write delta AOD's. Considered if not null.
52TString outputSingleFolder = "";
53//TString outputSingleFolder = "deltas";
275942e0 54// Number of files merged in a chunk
54853975 55Int_t maxMergeFiles = 20;
275942e0 56// Files that should not be merged
f362f3b6 57TString mergeExclude = "AliAOD.root AliAOD.VertexingHF.root AliAOD.Jets.root deltaAODPartCorr.root AliAOD.Muons.root AliAOD.Dimuons.root";
6e428ea7 58// Make replicas on the storages below
e7c25d04 59TString outputStorages = "disk=4";
275942e0 60// Number of runs per master job
2a47e7b4 61Int_t nRunsPerMaster = 10;
275942e0 62// Maximum number of files per job (gives size of AOD)
f362f3b6 63Int_t nFilesPerJob = 50;
e7c25d04 64// Int_t nFilesPerJob = 1; (AOD->delta AOD production case)
275942e0 65// Set the run range
f362f3b6 66Int_t run_numbers[10] = {126432}; // **********************!!!!!!!
67//Int_t run_range[2] = {114786, 114949}; // LHC09a7 *CHANGE ME*
a42c0df6 68// ### Settings that make sense only for local analysis
69//==============================================================================
70// Change local xml dataset for local interactive analysis
71TString local_xmldataset = "";
c6e7c68c 72
a42c0df6 73// ### Other flags to steer the analysis
74//==============================================================================
4d670889 75Bool_t usePhysicsSelection = kTRUE; // use physics selection
f362f3b6 76Bool_t useTender = kTRUE; // use tender wagon
4d670889 77Bool_t useMergeViaJDL = kTRUE; // merge via JDL
f362f3b6 78Bool_t useFastReadOption = kTRUE; // use xrootd tweaks
4d670889 79Bool_t useOverwriteMode = kTRUE; // overwrite existing collections
80Bool_t useDATE = kFALSE; // use date in train name
81Bool_t useDBG = kTRUE; // activate debugging
f362f3b6 82Bool_t useMC = kFALSE; // use MC info
83Bool_t useTAGS = kFALSE; // use ESD tags for selection
84Bool_t useKFILTER = kFALSE; // use Kinematics filter
85Bool_t useTR = kFALSE; // use track references
4d670889 86Bool_t useCORRFW = kFALSE; // do not change
87Bool_t useAODTAGS = kFALSE; // use AOD tags
88Bool_t saveTrain = kTRUE; // save train configuration as:
f362f3b6 89Bool_t saveCanvases = kFALSE; // save canvases created in Terminate
4d670889 90Bool_t saveProofToAlien = kFALSE; // save proof outputs in AliEn
91
a42c0df6 92// ### Analysis modules to be included. Some may not be yet fully implemented.
93//==============================================================================
94Int_t iAODanalysis = 0; // Analysis on input AOD's
0b4b5d2a 95Int_t iAODhandler = 1; // Analysis produces an AOD or dAOD's
96Int_t iESDfilter = 1; // ESD to AOD filter (barrel + muon tracks)
97Int_t iMUONcopyAOD = 1; // Task that copies only muon events in a separate AOD (PWG3)
98Int_t iJETAN = 1; // Jet analysis (PWG4)
f362f3b6 99Int_t iJETANdelta = 0; // Jet delta AODs
100Int_t iPWG4partcorr = 0; // Gamma-hadron correlations task (PWG4)
4d670889 101Int_t iPWG4gammaconv = 0; // Gamma conversion analysis (PWG4)
102Int_t iPWG4omega3pi = 0; // Omega to 3 pi analysis (PWG4)
0b4b5d2a 103Int_t iPWG3vertexing = 1; // Vertexing HF task (PWG3)
4d670889 104Int_t iPWG3hfe = 0; // Electrons analysis (PWG3)
105Int_t iPWG3d2h = 0; // D0->2 hadrons (PWG3)
0b4b5d2a 106Int_t iPWG3d0mass = 1; // D0 mass (PWG3D2H)
107Int_t iPWG3d0massLS = 1; // D0 mass LS (PWG3D2H)
108Int_t iPWG3dplus = 1; // D+ analysis (PWG3D2H)
109Int_t iPWG3LSd0 = 1; // LS D0 analysis (PWG3D2H)
110Int_t iPWG3LSjpsi = 1; // LS J/Psi analysis (PWG3D2H)
111Int_t iPWG3CFd0 = 1; // CF D0 analysis (PWG3D2H)
112Int_t iPWG3promptd0 = 1; // prompt D0 analysis (PWG3D2H)
f362f3b6 113Int_t iPWG3MuonTrain = 0; // Muon analysis train
4d670889 114Int_t iPWG2femto = 0; // Femtoscopy task (PWG2)
115Int_t iPWG2spectra = 0; // Spectra tasks (PWG2
0b4b5d2a 116Int_t iPWG2protons = 1; // Proton-antiproton analysis
6e428ea7 117Int_t iPWG2checkcascade = 1; // Check cascades task
0b4b5d2a 118Int_t iPWG2perfcascade = 1; // Check performance cascade
119Int_t iPWG2checkv0 = 1; // Check V0 task
120Int_t iPWG2strange = 1; // Strangeness task
121Int_t iPWG2central = 1; // Anisothropy in central collisions
4d670889 122Int_t iPWG2flow = 0; // Flow analysis tasks (PWG2)
123Int_t iPWG2res = 0; // Resonances task (PWG2)
124Int_t iPWG2rsneff = 0; // Resonances efficiency
125Int_t iPWG2kink = 0; // Kink analysis tasks (PWG2)
0b4b5d2a 126Int_t iPWG2kinkESDMC = 1; // Kink ESD-MC comparison (PWG2)
127Int_t iPWG2kinkLSKstar = 1; // Kink like-sign K* (PWG2)
128Int_t iPWG2kinkLSL1520 = 1; // Kink like-sign L1520 (PWG2)
129Int_t iPWG2kinkLSPhi = 1; // Kink like-sign Phi (PWG2)
130Int_t iPWG2kinkKstarESD = 1; // Kink Kstar ESD (PWG2)
131Int_t iPWG2kinkKstarMC = 1; // Kink Kstar MC (PWG2)
132Int_t iPWG2kinkL1520ESD = 1; // Kink L1520 ESD (PWG2)
133Int_t iPWG2kinkL1520MC = 1; // Kink L1520 MC (PWG2)
134Int_t iPWG2kinkPhiESD = 1; // Kink resonances Phi ESD (PWG2)
135Int_t iPWG2kinkPhiMC = 1; // Kink resonances Phi MC (PWG2)
4d670889 136Int_t iPWG2evchar = 0; // Event characteristics (PWG2)
137Int_t iPWG2unicor = 0; // Unicor analysis (PWG2)
138Int_t iPWG2forward = 0; // FMD analysis (PWG2)
6e428ea7 139
140// ### Configuration macros used for each module
141//==============================================================================
4d670889 142TString configPWG2femto = "$ALICE_ROOT/PWG2/FEMTOSCOPY/macros/Train/Train3/ConfigFemtoAnalysis.C";
04de1044 143//TString configPWG3d2h = "$ALICE_ROOT/PWG3/vertexingHF/ConfigVertexingHF_highmult.C";
f362f3b6 144TString configPWG3d2h = "$ALICE_ROOT/PWG3/vertexingHF/ConfigVertexingHF.C";
a42c0df6 145// Temporaries.
c6e7c68c 146TString anaPars = "";
147TString anaLibs = "";
148// Function signatures
5c4c538a 149class AliAnalysisAlien;
c6e7c68c 150
151//______________________________________________________________________________
a42c0df6 152void AnalysisTrainNew(const char *analysis_mode="grid",
153 const char *plugin_mode="full",
154 const char *config_file="")
c6e7c68c 155{
a42c0df6 156// Main analysis train macro. If a configuration file is provided, all parameters
157// are taken from there but may be altered by CheckModuleFlags.
158 if (strlen(config_file) && !LoadConfig(config_file)) return;
c6e7c68c 159 TString smode(analysis_mode);
a42c0df6 160 smode.ToUpper();
c6e7c68c 161 // Check compatibility of selected modules
162 CheckModuleFlags(smode);
e4080179 163 if (saveTrain) WriteConfig();
c6e7c68c 164
165 printf("==================================================================\n");
a42c0df6 166 printf("=========== RUNNING ANALYSIS TRAIN %s IN %s MODE ==========\n", train_name.Data(),smode.Data());
c6e7c68c 167 printf("==================================================================\n");
168 printf("= Configuring analysis train for: =\n");
169 if (iAODanalysis) printf("= AOD analysis =\n");
170 else printf("= ESD analysis =\n");
f362f3b6 171 if (usePhysicsSelection) printf("= Physics selection =\n");
172 if (useTender) printf("= TENDER =\n");
c6e7c68c 173 if (iESDfilter) printf("= ESD filter =\n");
c6e7c68c 174 if (iMUONcopyAOD) printf("= MUON copy AOD =\n");
175 if (iJETAN) printf("= Jet analysis =\n");
ff205e4a 176 if (iJETANdelta) printf("= Jet delta AODs =\n");
0d5d317c 177 if (iPWG2spectra) {
178 printf("= PWG2 SPECTRA tasks : =\n");
179 if (iPWG2protons) printf("= PWG2 proton-antiproton =\n");
180 if (iPWG2checkcascade) printf("= PWG2 check cascades =\n");
181 if (iPWG2perfcascade) printf("= PWG2 performance cascades =\n");
182 if (iPWG2checkv0) printf("= PWG2 check V0 =\n");
183 if (iPWG2strange) printf("= PWG2 strangeness =\n");
ff205e4a 184 if (iPWG2central) printf("= PWG2 central =\n");
0d5d317c 185 }
6e428ea7 186 if (iPWG2femto) {
187 printf("= PWG2 femtoscopy =\n");
188 printf(" +++ configured by: %s\n", configPWG2femto.Data());
189 }
c6e7c68c 190 if (iPWG2flow) printf("= PWG2 flow =\n");
191 if (iPWG2res) printf("= PWG2 resonances =\n");
e4080179 192 if (iPWG2rsneff) printf("= PWG2 resonances efficiency =\n");
0d5d317c 193 if (iPWG2kink) {
194 printf("= PWG2 kink analysis tasks: =\n");
195 if (iPWG2kinkESDMC) printf("= PWG2 ESD-MC kinks =\n");
ff205e4a 196 if (iPWG2kinkLSKstar) printf("= PWG2 kink like-sign analysis K* =\n");
197 if (iPWG2kinkLSL1520) printf("= PWG2 kink like-sign analysis L1520 =\n");
198 if (iPWG2kinkLSPhi) printf("= PWG2 kink like-sign analysis Phi =\n");
a7a4e096 199 if (iPWG2kinkKstarESD) printf("= PWG2 kink Kstar ESD analysis =\n");
200 if (iPWG2kinkKstarMC) printf("= PWG2 kink Kstar MC analysis =\n");
201 if (iPWG2kinkL1520ESD) printf("= PWG2 kink L1520 ESD analysis =\n");
202 if (iPWG2kinkL1520MC) printf("= PWG2 kink L1520 MC analysis =\n");
203 if (iPWG2kinkPhiESD) printf("= PWG2 kink Phi ESD analysis =\n");
204 if (iPWG2kinkPhiMC) printf("= PWG2 kink Phi MC analysis =\n");
205 }
6e428ea7 206 if (iPWG2evchar) printf("= PWG2 event characteristics =\n");
207 if (iPWG2unicor) printf("= PWG2 Unicor analysis =\n");
208 if (iPWG2forward) printf("= PWG2 forward: sharing, density, bkg. correction, dNdEta =\n");
209 if (iPWG3vertexing) printf("= PWG3 vertexing =\n");
210 if (iPWG3hfe) printf("= PWG3 electrons =\n");
e4080179 211 if (iPWG3d2h) {
212 printf("= PWG3 D0->2 hadrons tasks =\n");
213 printf(" +++ configured by: %s\n", configPWG3d2h.Data());
ff205e4a 214 if (iPWG3d0mass) printf("= PWG3 D0 mass =\n");
215 if (iPWG3d0massLS) printf("= PWG3 D0 mass LS =\n");
216 if (iPWG3dplus) printf("= PWG3 D+ analysis =\n");
217 if (iPWG3LSd0) printf("= PWG3 LS D0 =\n");
218 if (iPWG3LSjpsi) printf("= PWG3 LS J/Psi =\n");
219 if (iPWG3CFd0) printf("= PWG3 CF D0 =\n");
220 if (iPWG3promptd0) printf("= PWG3 prompt D0 =\n");
e4080179 221 }
b0184943 222 if (iPWG3MuonTrain) printf("= PWG3 muon train =\n");
6e428ea7 223 if (iPWG4partcorr) printf("= PWG4 gamma-hadron, pi0 and gamma-jet correlations =\n");
224 if (iPWG4gammaconv) printf("= PWG4 gamma conversion =\n");
225 if (iPWG4omega3pi) printf("= PWG4 omega to 3 pions =\n");
c6e7c68c 226 printf("==================================================================\n");
4d670889 227 printf(":: use physics selection: %d\n", (UInt_t)usePhysicsSelection);
228 printf(":: use xrootd tweaks: %d\n", (UInt_t)useFastReadOption);
229 printf(":: use overwrite xml : %d\n", (UInt_t)useOverwriteMode);
230 printf(":: use merge via JDL: %d\n", (UInt_t)useMergeViaJDL);
231 printf(":: use MC truth: %d\n", (UInt_t)useMC);
232 printf(":: use KINE filter: %d\n", (UInt_t)useKFILTER);
233 printf(":: use track references: %d\n", (UInt_t)useTR);
234 printf(":: use tags: %d\n", (UInt_t)useTAGS);
235 printf(":: use AOD tags: %d\n", (UInt_t)useAODTAGS);
236 printf(":: use debugging: %d\n", (UInt_t)useDBG);
237 printf(":: use PAR files: %d\n", (UInt_t)usePAR);
238 printf(":: use AliEn plugin: %d\n", (UInt_t)usePLUGIN);
c6e7c68c 239
b160b576 240 //==========================================================================
c6e7c68c 241 // Connect to back-end system
242 if (!Connect(smode)) {
243 ::Error("AnalysisTrain", "Could not connect to %s back-end", analysis_mode);
244 return;
245 }
246
247 // Load common libraries and set include path
248 if (!LoadCommonLibraries(smode)) {
249 ::Error("AnalysisTrain", "Could not load common libraries");
250 return;
b160b576 251 }
c6e7c68c 252
b160b576 253 // Make the analysis manager and connect event handlers
254 AliAnalysisManager *mgr = new AliAnalysisManager("Analysis Train", "Production train");
255 if (saveProofToAlien) mgr->SetSpecialOutputLocation(proof_outdir);
6e428ea7 256 if (!strcmp(plugin_mode, "test")) mgr->SetNSysInfo(1);
c6e7c68c 257 // Load analysis specific libraries
258 if (!LoadAnalysisLibraries(smode)) {
259 ::Error("AnalysisTrain", "Could not load analysis libraries");
260 return;
261 }
262
c6e7c68c 263 // Create input handler (input container created automatically)
264 if (iAODanalysis) {
265 // AOD input handler
266 AliAODInputHandler *aodH = new AliAODInputHandler();
e4080179 267 if (iPWG3d2h) aodH->AddFriend("AliAOD.VertexingHF.root");
c6e7c68c 268 mgr->SetInputEventHandler(aodH);
269 } else {
270 // ESD input handler
271 AliESDInputHandler *esdHandler = new AliESDInputHandler();
099d8f33 272 if (useTAGS) esdHandler->SetReadTags();
c6e7c68c 273 mgr->SetInputEventHandler(esdHandler);
274 }
275 // Monte Carlo handler
276 if (useMC && !iAODanalysis) {
277 AliMCEventHandler* mcHandler = new AliMCEventHandler();
278 mgr->SetMCtruthEventHandler(mcHandler);
279 mcHandler->SetReadTR(useTR);
280 }
281 // AOD output container, created automatically when setting an AOD handler
282 if (iAODhandler) {
283 // AOD output handler
284 AliAODHandler* aodHandler = new AliAODHandler();
b160b576 285 aodHandler->SetOutputFileName("AliAOD.root");
c6e7c68c 286 mgr->SetOutputEventHandler(aodHandler);
b160b576 287 if (iAODanalysis) {
e4080179 288 aodHandler->SetFillAOD(kFALSE);
b160b576 289 aodHandler->SetCreateNonStandardAOD();
526b1502 290 if (iJETAN) aodHandler->SetOutputFileName("AliAOD.Jets.root");
e4080179 291// if (iPWG3vertexing) aodHandler->SetOutputFileName("AliAOD.VertexingHF.root");
b160b576 292 }
c6e7c68c 293 }
294 // Debugging if needed
f362f3b6 295 if (useDBG) mgr->SetDebugLevel(3);
e7c25d04 296 if (saveCanvases) mgr->SetSaveCanvases(kTRUE);
c6e7c68c 297
298 //==========================================================================
299 // Create the chain. In this example it is created only from ALIEN files but
300 // can be done to work in batch or grid mode as well.
301 TChain *chain = CreateChain(smode, plugin_mode);
302
303 //==========================================================================
304 // Load the tasks configuration macros for all wagons. These files are supposed now to be
305 // in the current workdir, but in AliEn they will be in the file catalog,
306 // mapped from AliRoot and pecified in the jdl input list.
307
308 // For now connection to top input container and common AOD output container
309 // is done in this macro, but in future these containers will be connected
310 // from each task configuration macro.
ff205e4a 311
312 AddAnalysisTasks();
313
314 // Run the analysis
315 //
316 if (usePLUGIN) {
317 AliAnalysisGrid *alienHandler = CreateAlienHandler(plugin_mode);
318 AliAnalysisManager::GetAnalysisManager()->SetGridHandler(alienHandler);
319 }
320
321 if (mgr->InitAnalysis()) {
322 mgr->PrintStatus();
323 if (saveTrain || strlen(config_file)) gSystem->ChangeDirectory(train_name);
324 StartAnalysis(smode, chain);
325 if (saveTrain && smode=="GRID") {
326 AliAnalysisAlien *gridhandler = (AliAnalysisAlien*)mgr->GetGridHandler();
327 TString alien_workdir = gGrid->GetHomeDirectory();
4d670889 328 alien_workdir += train_name;
ff205e4a 329 alien_outdir = gridhandler->GetGridOutputDir();
330 printf("=== Registering ConfigTrain.C in the work directory <%s> ===\n",
331 alien_workdir.Data());
332 if (AliAnalysisAlien::FileExists(Form("%s/%sConfig.C", alien_workdir.Data(), train_name.Data())))
333 gGrid->Rm(Form("%s/%sConfig.C", alien_workdir.Data(), train_name.Data()));
334 if (strcmp(plugin_mode, "test"))
335 TFile::Cp(Form("file:%sConfig.C",train_name.Data()), Form("alien://%s/%sConfig.C", alien_workdir.Data(), train_name.Data()));
336 }
337 }
338}
339
340//______________________________________________________________________________
341void AddAnalysisTasks()
342{
343// Add all analysis task wagons to the train
344 AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
c6e7c68c 345
f362f3b6 346 //
347 // Tender and supplies
348 //
349 if (useTender) {
350 gROOT->LoadMacro("$ALICE_ROOT/ANALYSIS/TenderSupplies/AddTaskTender.C");
351 AliAnalysisTaskSE *tender = AddTaskTender(kTRUE);
352// tender->SelectCollisionCandidates();
353 tender->SetDebugLevel(2);
354 }
4d670889 355 if (usePhysicsSelection) {
356 // Physics selection task
357 gROOT->LoadMacro("$ALICE_ROOT/ANALYSIS/macros/AddTaskPhysicsSelection.C");
358 mgr->RegisterExtraFile("event_stat.root");
f362f3b6 359 AliPhysicsSelectionTask *physSel = AddTaskPhysicsSelection(useMC);
4d670889 360 }
361
c6e7c68c 362 if (iESDfilter && !iAODanalysis) {
363 // ESD filter task configuration.
364 gROOT->LoadMacro("$ALICE_ROOT/ANALYSIS/macros/AddTaskESDFilter.C");
ff205e4a 365 if (iMUONcopyAOD) {
366 printf("Registering delta AOD file\n");
367 mgr->RegisterExtraFile("AliAOD.Muons.root");
4d670889 368 mgr->RegisterExtraFile("AliAOD.Dimuons.root");
369 AliAnalysisTaskESDfilter *taskesdfilter = AddTaskESDFilter(useKFILTER, kTRUE, kTRUE, usePhysicsSelection);
ff205e4a 370 } else {
4d670889 371 AliAnalysisTaskESDfilter *taskesdfilter = AddTaskESDFilter(useKFILTER, kFALSE, kFALSE, usePhysicsSelection);
ff205e4a 372 }
c6e7c68c 373 }
374
099d8f33 375 // AOD tags
376 if (useAODTAGS) {
377 AliAnalysisTaskTagCreator* tagTask = new AliAnalysisTaskTagCreator("AOD Tag Creator");
378 mgr->AddTask(tagTask);
379 AliAnalysisDataContainer *coutTags = mgr->CreateContainer("cTag", TTree::Class(),
380 AliAnalysisManager::kOutputContainer, "AOD.tag.root");
381 mgr->ConnectInput (tagTask, 0, mgr->GetCommonInputContainer());
382 mgr->ConnectOutput(tagTask, 1, coutTags);
c6e7c68c 383 }
384
e4080179 385// ********** PWG2 wagons ******************************************************
386 AliAnalysisManager::SetCommonFileName("PWG2histograms.root");
387
c6e7c68c 388 // Proton analysis
389 if (iPWG2spectra) {
f0e8e44e 390 // protons
0d5d317c 391 if (iPWG2protons) {
392 gROOT->LoadMacro("$ALICE_ROOT/PWG2/SPECTRA/macros/AddTaskProtons.C");
393 AliAnalysisTaskProtons *taskprotons = AddTaskProtons();
394 if (!taskprotons) ::Warning("AnalysisTrainNew", "AliAnalysisTaskProtons cannot run for this train conditions - EXCLUDED");
395 }
f0e8e44e 396 // cascades
0d5d317c 397 if (iPWG2checkcascade) {
398 gROOT->LoadMacro("$ALICE_ROOT/PWG2/SPECTRA/macros/AddTaskCheckCascade.C");
f362f3b6 399 AliAnalysisTaskCheckCascade *taskcheckcascade = AddTaskCheckCascade(iCollision,runOnData);
0d5d317c 400 if (!taskcheckcascade) ::Warning("AnalysisTrainNew", "AliAnalysisTaskCheckCascade cannot run for this train conditions - EXCLUDED");
401 }
6e7f8264 402 // v0's
0d5d317c 403 if (iPWG2checkv0) {
404 gROOT->LoadMacro("$ALICE_ROOT/PWG2/SPECTRA/macros/AddTaskCheckV0.C");
405 AliAnalysisTaskCheckV0 *taskcheckV0 = AddTaskCheckV0();
406 if (!taskcheckV0) ::Warning("AnalysisTrainNew", "AliAnalysisTaskCheckV0 cannot run for this train conditions - EXCLUDED");
407 }
6e7f8264 408 // strangeness
0d5d317c 409 if (iPWG2strange) {
410 gROOT->LoadMacro("$ALICE_ROOT/PWG2/SPECTRA/macros/AddTaskStrange.C");
411 AliAnalysisTaskStrange *taskstrange = AddTaskStrange();
412 if (!taskstrange) ::Warning("AnalysisTrainNew", "AliAnalysisTaskStrange cannot run for this train conditions - EXCLUDED");
413 }
c3a83447 414 // performance cascades
0d5d317c 415 if (iPWG2perfcascade) {
416 gROOT->LoadMacro("$ALICE_ROOT/PWG2/SPECTRA/macros/AddTaskCheckPerformanceCascade.C");
417 AliAnalysisTaskCheckPerformanceCascade *taskperfcascade = AddTaskCheckPerformanceCascade();
418 if (!taskperfcascade) ::Warning("AnalysisTrainNew", "AliAnalysisTaskCheckPerformanceCascade cannot run for this train conditions - EXCLUDED");
419 }
ff205e4a 420 // central
421 if (iPWG2central) {
422 gROOT->LoadMacro("$ALICE_ROOT/PWG2/SPECTRA/macros/AddTaskCentral.C");
423 AliAnalysisTaskCentral *taskcentral = AddTaskCentral();
424 if (!taskcentral) ::Warning("AnalysisTrainNew", "AliAnalysisTaskCentral cannot run for this train conditions - EXCLUDED");
425 }
426 }
c6e7c68c 427
081194a7 428 // Femtoscopy analysis modules
429 if (iPWG2femto) {
430 gROOT->LoadMacro("$ALICE_ROOT/PWG2/FEMTOSCOPY/macros/AddTaskFemto.C");
6e428ea7 431 AliAnalysisTaskFemto *taskfemto = AddTaskFemto(configPWG2femto);
081194a7 432 if (!taskfemto) ::Warning("AnalysisTrainNew", "AliAnalysisTaskFemto cannot run for this train conditions - EXCLUDED");
433 }
434
435 // Kink analysis
436 if (iPWG2kink) {
0d5d317c 437 if (iPWG2kinkESDMC) {
438 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKink.C");
a7a4e096 439 AliAnalysisKinkESDMC *taskkink1 = AddTaskKink();
440 if (!taskkink1) ::Warning("AnalysisTrainNew", "AliAnalysisKinkESDMC cannot run for this train conditions - EXCLUDED");
0d5d317c 441 }
ff205e4a 442 if (iPWG2kinkLSKstar) {
443 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResLikeSignKstar.C");
444 AliResonanceKinkLikeSign *taskkink2 = AddTaskKinkResLikeSignKstar();
a7a4e096 445 if (!taskkink2) ::Warning("AnalysisTrainNew", "AliResonanceKinkLikeSign cannot run for this train conditions - EXCLUDED");
0d5d317c 446 }
ff205e4a 447 if (iPWG2kinkLSL1520) {
448 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResLikeSignL1520.C");
449 AliResonanceKinkLikeSign *taskkink3 = AddTaskKinkResLikeSignL1520();
450 if (!taskkink3) ::Warning("AnalysisTrainNew", "AliResonanceKinkLikeSign cannot run for this train conditions - EXCLUDED");
451 }
452 if (iPWG2kinkLSPhi) {
453 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResLikeSignPhi.C");
454 AliResonanceKinkLikeSign *taskkink4 = AddTaskKinkResLikeSignPhi();
455 if (!taskkink4) ::Warning("AnalysisTrainNew", "AliResonanceKinkLikeSign cannot run for this train conditions - EXCLUDED");
456 }
a7a4e096 457 if (iPWG2kinkKstarESD) {
458 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResonanceKstarESD.C");
ff205e4a 459 AliAnalysisTaskKinkResonance *taskkink5 = AddTaskKinkResonanceKstarESD();
460 if (!taskkink5) ::Warning("AnalysisTrainNew", "AliAnalysisKinkResonanceKstarESD cannot run for this train conditions - EXCLUDED");
a7a4e096 461 }
462 if (iPWG2kinkKstarMC) {
463 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResonanceKstarMC.C");
ff205e4a 464 AliAnalysisTaskKinkResonance *taskkink6 = AddTaskKinkResonanceKstarMC();
465 if (!taskkink6) ::Warning("AnalysisTrainNew", "AliAnalysisKinkResonanceKstarMC cannot run for this train conditions - EXCLUDED");
a7a4e096 466 }
467 if (iPWG2kinkL1520ESD) {
468 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResonanceL1520ESD.C");
ff205e4a 469 AliAnalysisTaskKinkResonance *taskkink7 = AddTaskKinkResonanceL1520ESD();
470 if (!taskkink7) ::Warning("AnalysisTrainNew", "AliAnalysisKinkResonanceL1520ESD cannot run for this train conditions - EXCLUDED");
a7a4e096 471 }
472 if (iPWG2kinkL1520MC) {
473 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResonanceL1520MC.C");
ff205e4a 474 AliAnalysisTaskKinkResonance *taskkink8 = AddTaskKinkResonanceL1520MC();
475 if (!taskkink8) ::Warning("AnalysisTrainNew", "AliAnalysisKinkResonanceL1520MC cannot run for this train conditions - EXCLUDED");
a7a4e096 476 }
477 if (iPWG2kinkPhiESD) {
478 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResonancePhiESD.C");
ff205e4a 479 AliAnalysisTaskKinkResonance *taskkink9 = AddTaskKinkResonancePhiESD();
480 if (!taskkink9) ::Warning("AnalysisTrainNew", "AliAnalysisKinkResonancePhiESD cannot run for this train conditions - EXCLUDED");
a7a4e096 481 }
482 if (iPWG2kinkPhiMC) {
483 gROOT->LoadMacro("$ALICE_ROOT/PWG2/KINK/macros/AddTaskKinkResonancePhiMC.C");
ff205e4a 484 AliAnalysisTaskKinkResonance *taskkink10 = AddTaskKinkResonancePhiMC();
485 if (!taskkink10) ::Warning("AnalysisTrainNew", "AliAnalysisKinkResonancePhiMC cannot run for this train conditions - EXCLUDED");
a7a4e096 486 }
081194a7 487 }
e4d0b516 488
c0893d28 489 // Event characterization
490 if (iPWG2evchar) {
491 gROOT->LoadMacro("$ALICE_ROOT/PWG2/EVCHAR/macros/AddTaskSPDdNdEta.C");
492 AliAnalysisTaskSPDdNdEta *taskspddndeta = AddTaskSPDdNdEta();
493 if (!taskspddndeta) ::Warning("AnalysisTrainNew", "AliAnalysisTaskSPDdNdEta cannot run for this train conditions - EXCLUDED");
494 taskspddndeta->SetReadMC(useMC);
495 }
496
497 // Unicor
498 if (iPWG2unicor) {
499 gROOT->LoadMacro("$ALICE_ROOT/PWG2/UNICOR/AddTaskUnicor.C");
500 AliAnalysisTaskUnicor *taskunicor = AddTaskUnicor();
8e1cf110 501 if (!taskunicor) ::Warning("AnalysisTrainNew", "AliAnalysisTaskUnicor cannot run for this train conditions - EXCLUDED");
c0893d28 502 }
503
0ad3ea1f 504 // Forward Multiplicity
54853975 505 AliAnalysisManager::SetCommonFileName("forward.root");
6e428ea7 506 if (iPWG2forward) {
0ad3ea1f 507 gROOT->LoadMacro("$ALICE_ROOT/PWG2/FORWARD/analysis2/AddTaskForwardMult.C");
508 gROOT->LoadMacro("$ALICE_ROOT/PWG2/FORWARD/analysis2/AddTaskCentralMult.C");
509 Bool_t mc = false;
510 UShort_t sys = 0; // 0: get from data, 1: pp, 2: AA
511 UShort_t sNN = 0; // 0: get from data, otherwise center of mass
512 // energy (per nucleon pair)
513 Short_t fld = 0; // 0: get from data, otherwise L3 field in kG
514 AliAnalysisTask *taskForward = AddTaskForwardMult(mc, sys, sNN, fld);
515 if (!taskForward)
516 ::Warning("AnalysisTrainNew", "AliForwardMultiplicityTask cannot run for this train conditions - EXCLUDED");
517 AliAnalysisTask *taskCentral = AddTaskCentralMult(mc, sys, sNN, fld);
518 if (!taskCentral)
519 ::Warning("AnalysisTrainNew", "AliCentralMultiplicityTask cannot run for this train conditions - EXCLUDED");
6e428ea7 520 }
54853975 521 AliAnalysisManager::SetCommonFileName("PWG2histograms.root");
6e428ea7 522
e4d0b516 523 // Flow analysis
524 if (iPWG2flow) {
525 gROOT->LoadMacro("$ALICE_ROOT/PWG2/FLOW/macros/AddTaskFlow.C");
1276f2f0 526 Bool_t SP = kTRUE;
527 Bool_t LYZ1SUM = kTRUE;
528 Bool_t LYZ1PROD = kTRUE;
529 Bool_t LYZ2SUM = kFALSE;
530 Bool_t LYZ2PROD = kFALSE;
531 Bool_t LYZEP = kFALSE;
532 Bool_t GFC = kTRUE;
533 Bool_t QC = kTRUE;
534 Bool_t FQD = kFALSE;
535 Bool_t MCEP = kFALSE; //does not work yet 24/12/08
e4d0b516 536 Bool_t kineFromESD = kTRUE;
1276f2f0 537 Bool_t METHODS[] = {SP,LYZ1SUM,LYZ1PROD,LYZ2SUM,LYZ2PROD,LYZEP,GFC,QC,FQD,MCEP};
e4d0b516 538 // Analysis type can be ESD, AOD, MC, ESDMC0, ESDMC1
539 TString type = "AOD";
540 if (!iAODanalysis) type = "ESD";
e4d0b516 541 // Boolean to fill/not fill the QA histograms
542 Bool_t QA = kTRUE;
543 // Boolean to use/not use weights for the Q vector
544 Bool_t WEIGHTS[] = {kFALSE,kFALSE,kFALSE}; //Phi, v'(pt), v'(eta)
545 AliAnalysisTaskFlowEvent* taskFE = AddTaskFlow(type,METHODS,QA,WEIGHTS);
546 if (!taskFE) ::Warning("AnalysisTrainNew", "AliAnalysisTaskFlowEvent cannot run for this train conditions - EXCLUDED");
547 }
3b1610cf 548
549 // PWG2 resonances
ff205e4a 550 AliAnalysisManager::SetCommonFileName("resonances.root");
3b1610cf 551 if (iPWG2res) {
e7c25d04 552 gROOT->LoadMacro("$ALICE_ROOT/PWG2/RESONANCES/macros/train/AddAnalysisTaskRsnNew.C");
553 gROOT->LoadMacro("$ALICE_ROOT/PWG2/RESONANCES/macros/train/AddAnalysisTaskRsnEffNew.C");
0d5d317c 554 TString path = gROOT->GetMacroPath();
555 path += ":$ALICE_ROOT/PWG2/RESONANCES/macros/train";
556 gROOT->SetMacroPath(path);
4d670889 557 AddAnalysisTaskRsn(kTRUE);
558 if (iPWG2rsneff) AddAnalysisTaskRsnEff();
3b1610cf 559 }
ff205e4a 560 AliAnalysisManager::SetCommonFileName("PWG2histograms.root");
e4080179 561
562// ********** PWG3 wagons ******************************************************
563 AliAnalysisManager::SetCommonFileName("PWG3histograms.root");
e4d0b516 564
565 // PWG3 vertexing
15dac83a 566 if (iPWG3vertexing) {
f362f3b6 567 gROOT->LoadMacro("$ALICE_ROOT/PWG3/vertexingHF/macros/AddTaskVertexingHF.C");
04de1044 568 if (!iPWG3d2h) TFile::Cp(gSystem->ExpandPathName(configPWG3d2h.Data()), Form("%s/ConfigVertexingHF.C", train_name.Data()));
15dac83a 569 AliAnalysisTaskSEVertexingHF *taskvertexingHF = AddTaskVertexingHF();
081194a7 570 if (!taskvertexingHF) ::Warning("AnalysisTrainNew", "AliAnalysisTaskSEVertexingHF cannot run for this train conditions - EXCLUDED");
54853975 571 else mgr->RegisterExtraFile("AliAOD.VertexingHF.root");
15dac83a 572 }
573
2a47e7b4 574 // PWG3 electrons
575 if (iPWG3hfe) {
576 gROOT->LoadMacro("$ALICE_ROOT/PWG3/hfe/AddTaskHFE.C");
577 AliAnalysisTaskHFE *taskHFE = AddTaskHFE();
578 if (!taskHFE) ::Warning("AnalysisTrainNew", "AliAnalysisTaskHFE cannot run for this train conditions - EXCLUDED");
579 }
e4080179 580
581 // PWG3 D2h
582 if (iPWG3d2h) {
583 gROOT->LoadMacro("$ALICE_ROOT/PWG3/vertexingHF/AddD2HTrain.C");
584 TFile::Cp(gSystem->ExpandPathName(configPWG3d2h.Data()), Form("%s/ConfigVertexingHF.C", train_name.Data()));
4d670889 585 AddD2HTrain(iPWG3d0mass,iPWG3d0massLS,iPWG3dplus, iPWG3LSd0, iPWG3LSjpsi, iPWG3CFd0, iPWG3promptd0);
e4080179 586 }
b0184943 587
588 // PWG3 muon
589 if (iPWG3MuonTrain) {
590 gROOT->LoadMacro("$ALICE_ROOT/PWG3/muon/AddPWG3MuonTrain.C");
591 // iESDAnalysis, iAODAnalysis -> flags to select if the train is AOD or ESD based
592 // iMuonDistributions, iSingleMuonANAlysis -> flags to switch on/off analysis wagons
e7c25d04 593 Int_t isESDAnalysis = (iAODanalysis)?0:1;
594 Int_t isAODAnalysis = (iAODanalysis)?1:0;
595 Int_t addMuonDistributions = 1;
596 Int_t addSingleMuonAnalysis = 1;
597 Int_t addMuonHFAnalysis = 1;
4d670889 598 Int_t ntaskmuon = AddPWG3MuonTrain(isESDAnalysis,isAODAnalysis,addMuonDistributions,addSingleMuonAnalysis,addMuonHFAnalysis);
e7c25d04 599 printf("Added %d muon tasks\n", ntaskmuon);
b0184943 600 }
2a47e7b4 601
e4080179 602// ********** PWG4 wagons ******************************************************
603 AliAnalysisManager::SetCommonFileName("PWG4histograms.root");
604
605 // Jet analysis
606 if (iJETAN) {
607 gROOT->LoadMacro("$ALICE_ROOT/PWG4/macros/AddTaskJets.C");
608 if (!iAODanalysis) {
609 // Default jet reconstructor running on ESD's
610 AliAnalysisTaskJets * taskjets = AddTaskJets();
611 if (!taskjets) ::Warning("AnalysisTrainNew", "AliAnalysisTaskJets cannot run for this train conditions - EXCLUDED");
ff205e4a 612 if (iJETANdelta) {
613 AddTaskJetsDelta("AliAOD.Jets.root");
614 mgr->RegisterExtraFile("AliAOD.Jets.root");
615 }
e4080179 616 } else {
617 // AOD-based analysis. Add all reconstructors to write into delta AOD's
e7c25d04 618 if (iJETANdelta) {
f362f3b6 619 Int_t ntasksjets = AddTaskJetsDelta("AliAOD.Jets.root",0,kFALSE);
e7c25d04 620 if (ntasksjets) printf("Added %d jet reconstructors\n", ntasksjets);
621 }
e4080179 622 }
623 }
c6e7c68c 624 // PWG4 hadron correlations
625 if (iPWG4partcorr) {
6af52a5f 626 Bool_t isSimulation = (runOnData)?kFALSE:kTRUE;
099d8f33 627 gROOT->LoadMacro("$ALICE_ROOT/PWG4/macros/AddTaskPartCorr.C");
0b4b5d2a 628 AliAnalysisTaskParticleCorrelation *taskpartcorrPHOS = AddTaskPartCorr("AOD", "PHOS", kFALSE, isSimulation);
081194a7 629 if (!taskpartcorrPHOS) ::Warning("AnalysisTrainNew", "AliAnalysisTaskParticleCorrelation PHOS cannot run for this train conditions - EXCLUDED");
0b4b5d2a 630 AliAnalysisTaskParticleCorrelation *taskpartcorrEMCAL = AddTaskPartCorr("AOD", "EMCAL", kFALSE, isSimulation);
081194a7 631 if (!taskpartcorrEMCAL) ::Warning("AnalysisTrainNew", "AliAnalysisTaskParticleCorrelation EMCAL cannot run for this train conditions - EXCLUDED");
54853975 632 mgr->RegisterExtraFile("deltaAODPartCorr.root");
15dac83a 633 }
c3a83447 634
635 // PWG4 gamma conversion analysis
636 if (iPWG4gammaconv) {
637 gROOT->LoadMacro("$ALICE_ROOT/PWG4/macros/AddTaskGammaConversion.C");
526b1502 638 TString cdir = gSystem->WorkingDirectory();
639 gSystem->ChangeDirectory(gSystem->ExpandPathName("$ALICE_ROOT/PWG4/macros/"));
b82e6d7b 640 TString gcArguments = "-run-on-train -use-own-xyz -run-jet -run-neutralmeson -no-aod -apply-chi2-cut -low-memory -use-v0-multiplicity -move-bg-vertex ";
641 TString kGCAnalysisCutSelectionId="900110204010001";
642 gcArguments.Append(Form(" -set-cut-selection %s",kGCAnalysisCutSelectionId.Data()));
643 if(!useMC)gcArguments += " -mc-off";
526b1502 644 AliAnalysisTaskGammaConversion * taskGammaConversion = AddTaskGammaConversion(gcArguments,mgr->GetCommonInputContainer());
645 gSystem->ChangeDirectory(cdir);
b82e6d7b 646 taskGammaConversion->SelectCollisionCandidates();
c3a83447 647 if (!taskGammaConversion) ::Warning("AnalysisTrainNew", "AliAnalysisTaskGammaConversion cannot run for these train conditions - EXCLUDED");
648 }
5c4c538a 649
650 // PWG4 omega to 3 pions analysis
651 if (iPWG4omega3pi) {
652 gROOT->LoadMacro("$ALICE_ROOT/PWG4/macros/AddTaskomega3pi.C");
653 AliAnalysisTaskOmegaPi0PiPi *taskomega3pi = AddTaskomega3pi();
654 if (!taskomega3pi) ::Warning("AnalysisTrainNew", "AliAnalysisTaskomega3pi cannot run for these train conditions - EXCLUDED");
655 }
c6e7c68c 656}
657
658//______________________________________________________________________________
659void StartAnalysis(const char *mode, TChain *chain) {
660// Start analysis.
661 Int_t imode = -1;
662 AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
663 if (!strcmp(mode, "LOCAL")) imode = 0;
664 if (!strcmp(mode, "PROOF")) imode = 1;
665 if (!strcmp(mode, "GRID")) imode = 2;
666 switch (imode) {
667 case 0:
668 if (!chain) {
a42c0df6 669 ::Error("AnalysisTrainNew.C::StartAnalysis", "Cannot create the chain");
c6e7c68c 670 return;
671 }
081194a7 672 mgr->StartAnalysis(mode, chain);
c6e7c68c 673 return;
674 case 1:
a42c0df6 675 if (!proof_dataset.Length()) {
676 ::Error("AnalysisTrainNew.C::StartAnalysis", "proof_dataset is empty");
c6e7c68c 677 return;
678 }
b160b576 679 mgr->StartAnalysis(mode, proof_dataset, 1000);
c6e7c68c 680 return;
681 case 2:
682 if (usePLUGIN) {
683 if (!mgr->GetGridHandler()) {
a42c0df6 684 ::Error("AnalysisTrainNew.C::StartAnalysis", "Grid plugin not initialized");
c6e7c68c 685 return;
686 }
687 mgr->StartAnalysis("grid");
688 } else {
689 if (!chain) {
a42c0df6 690 ::Error("AnalysisTrainNew.C::StartAnalysis", "Cannot create the chain");
c6e7c68c 691 return;
692 }
693 mgr->StartAnalysis(mode, chain);
694 }
695 return;
696 }
697}
698
699//______________________________________________________________________________
700void CheckModuleFlags(const char *mode) {
701// Checks selected modules and insure compatibility
702 Int_t imode = -1;
703 if (!strcmp(mode, "LOCAL")) imode = 0;
704 if (!strcmp(mode, "PROOF")) imode = 1;
705 if (!strcmp(mode, "GRID")) imode = 2;
ff205e4a 706 if (!iJETAN) iJETANdelta = 0;
c6e7c68c 707 if (imode==1) {
081194a7 708 if (!usePAR) {
a42c0df6 709 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PAR files enabled due to PROOF analysis");
081194a7 710 usePAR = kTRUE;
711 }
274ff025 712 }
081194a7 713 if (imode != 2) {
a42c0df6 714 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "AliEn plugin disabled since not in GRID mode");
081194a7 715 usePLUGIN = kFALSE;
716 }
c6e7c68c 717 if (iAODanalysis) {
718 // AOD analysis
081194a7 719 if (useMC)
a42c0df6 720 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "MC usage disabled in analysis on AOD's");
526b1502 721 if (useAODTAGS)
722 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "AOD tags usage disabled in analysis on AOD's");
c6e7c68c 723 useMC = kFALSE;
724 useTR = kFALSE;
526b1502 725 useAODTAGS = kFALSE;
081194a7 726 if (iESDfilter)
a42c0df6 727 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "ESD filter disabled in analysis on AOD's");
c6e7c68c 728 iESDfilter = 0;
081194a7 729 if (!iAODhandler) {
730 if (iJETAN)
a42c0df6 731 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "JETAN disabled in analysis on AOD's without AOD handler");
081194a7 732 iJETAN = 0;
ff205e4a 733 iJETANdelta = 0;
081194a7 734 }
c6e7c68c 735 // Disable tasks that do not work yet on AOD data
e4080179 736 if (iPWG4gammaconv)
737 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG4gammaconv disabled on AOD's without AOD handler");
738 iPWG4gammaconv = 0;
ff205e4a 739 if (iPWG2central)
740 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2central disabled on AOD's");
741 iPWG2central = 0;
0d5d317c 742 if (iPWG2flow)
743 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2flow disabled on AOD's");
744 iPWG2flow = 0;
745 if (iPWG2femto)
746 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2femto disabled on AOD's");
747 iPWG2femto = 0;
748 if (iPWG2res)
749 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2res disabled on AOD's");
750 iPWG2res = 0;
e4080179 751 if (iPWG2rsneff)
752 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2rsneff disabled on AOD's");
753 iPWG2rsneff = 0;
754 if (iPWG2kink)
a42c0df6 755 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2kink disabled in analysis on AOD's");
7cbd7add 756 iPWG2kink = 0;
c0893d28 757 if (iPWG2unicor)
758 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2unicor disabled in analysis on AOD's");
759 iPWG2unicor = 0;
0d5d317c 760 if (iPWG2evchar)
761 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG4evchar disabled on AOD's");
762 iPWG2evchar = 0;
6e428ea7 763 if (iPWG2forward)
764 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2forward disabled in analysis on AOD's");
765 iPWG2forward = 0;
2a47e7b4 766 if (iPWG3hfe)
767 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG3hfe disabled on AOD's");
768 iPWG3hfe = 0;
5c4c538a 769 if (iPWG4omega3pi)
0d5d317c 770 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG4omega3pi disabled on AOD's");
5c4c538a 771 iPWG4omega3pi = 0;
c6e7c68c 772 } else {
773 // ESD analysis
552f38dc 774 if (!useMC) useTR = kFALSE;
775 if (!useTR) {
776 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "iPWG2evchar disabled if not reading track references");
777 iPWG2evchar = 0;
778 }
0d5d317c 779 }
780 if (!useMC) {
781 if (iPWG2perfcascade)
782 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2perfcascade disabled without MC info");
783 iPWG2perfcascade = 0;
ff205e4a 784 if (iPWG2central)
785 ::Info("AnalysisTrainNew.C::CheckModuleFlags", "PWG2central disabled without MC info");
786 iPWG2central = 0;
0d5d317c 787 }
526b1502 788 if (iJETAN && !iAODanalysis) iESDfilter=1;
789 if (iESDfilter) {iAODhandler=1; useCORRFW = kTRUE;}
e4080179 790 if (iPWG2spectra || iPWG2flow || iPWG3vertexing || iPWG3hfe || iPWG2res || iPWG2rsneff) useCORRFW = kTRUE;
099d8f33 791 if (useKFILTER && !useMC) useKFILTER = kFALSE;
792 if (useAODTAGS && !iAODhandler) useAODTAGS = kFALSE;
c6e7c68c 793}
794
795//______________________________________________________________________________
796Bool_t Connect(const char *mode) {
797// Connect <username> to the back-end system.
798 Int_t imode = -1;
799 if (!strcmp(mode, "LOCAL")) imode = 0;
800 if (!strcmp(mode, "PROOF")) imode = 1;
801 if (!strcmp(mode, "GRID")) imode = 2;
802 TString username = gSystem->Getenv("alien_API_USER");
803 switch (imode) {
804 case 0:
805 break;
806 case 1:
807 if (!username.Length()) {
a42c0df6 808 ::Error(Form("AnalysisTrainNew.C::Connect <%s>", mode), "Make sure you:\n \
c6e7c68c 809 1. Have called: alien-token-init <username>\n \
810 2. Have called: >source /tmp/gclient_env_$UID");
811 return kFALSE;
812 }
a42c0df6 813 ::Info("AnalysisTrainNew.C::Connect", "Connecting user <%s> to PROOF cluster <%s>",
814 username.Data(), proof_cluster.Data());
b160b576 815 gEnv->SetValue("XSec.GSI.DelegProxy", "2");
7cbd7add 816// TProof::Open(Form("%s@%s:31093", username.Data(), proof_cluster.Data()));
817 TProof::Open(Form("%s@%s", username.Data(), proof_cluster.Data()));
c6e7c68c 818 if (!gProof) {
819 if (strcmp(gSystem->Getenv("XrdSecGSISRVNAMES"), "lxfsrd0506.cern.ch"))
a42c0df6 820 ::Error(Form("AnalysisTrainNew.C::Connect <%s>", mode), "Environment XrdSecGSISRVNAMES different from lxfsrd0506.cern.ch");
c6e7c68c 821 return kFALSE;
822 }
b160b576 823 TGrid::Connect("alien://");
824 if (gGrid) {
825 TString homedir = gGrid->GetHomeDirectory();
826 TString workdir = homedir + train_name;
827 if (!gGrid->Cd(workdir)) {
828 gGrid->Cd(homedir);
829 if (gGrid->Mkdir(workdir)) {
830 gGrid->Cd(train_name);
831 ::Info("AnalysisTrainNew::Connect()", "Directory %s created", gGrid->Pwd());
832 }
833 }
834 gGrid->Mkdir("proof_output");
835 gGrid->Cd("proof_output");
836 proof_outdir = Form("alien://%s", gGrid->Pwd());
837 }
c6e7c68c 838 break;
839 case 2:
c6e7c68c 840 if (usePLUGIN && !gSystem->Getenv("alien_CLOSE_SE")) {
a42c0df6 841 ::Error(Form("AnalysisTrainNew.C::Connect <%s>", mode),
c6e7c68c 842 "When using the AliEn plugin it is preferable to define the \
843 variable alien_CLOSE_SE in your environment.");
844 return kFALSE;
845 }
a42c0df6 846 ::Info("AnalysisTrainNew.C::Connect", "Connecting user <%s> to AliEn ...",
c6e7c68c 847 username.Data());
848 TGrid::Connect("alien://");
849 if (!gGrid || !gGrid->IsConnected()) return kFALSE;
850 break;
851 default:
a42c0df6 852 ::Error("AnalysisTrainNew.C::Connect", "Unknown run mode: %s", mode);
c6e7c68c 853 return kFALSE;
854 }
a42c0df6 855 ::Info("AnalysisTrainNew.C::Connect","Connected in %s mode", mode);
c6e7c68c 856 return kTRUE;
857}
858
859//______________________________________________________________________________
860Bool_t LoadCommonLibraries(const char *mode)
861{
862// Load common analysis libraries.
863 Int_t imode = -1;
864 if (!strcmp(mode, "LOCAL")) imode = 0;
865 if (!strcmp(mode, "PROOF")) imode = 1;
866 if (!strcmp(mode, "GRID")) imode = 2;
867 if (!gSystem->Getenv("ALICE_ROOT")) {
a42c0df6 868 ::Error("AnalysisTrainNew.C::LoadCommonLibraries", "Analysis train requires that analysis libraries are compiled with a local AliRoot");
c6e7c68c 869 return kFALSE;
870 }
871 Bool_t success = kTRUE;
872 // ROOT libraries
873 gSystem->Load("libTree.so");
874 gSystem->Load("libGeom.so");
875 gSystem->Load("libVMC.so");
876 gSystem->Load("libPhysics.so");
54853975 877 gSystem->Load("libMinuit.so");
c6e7c68c 878
879 // Load framework classes. Par option ignored here.
880 switch (imode) {
881 case 0:
882 case 2:
7581b1bc 883 if (useCPAR) {
884 success &= LoadLibrary("STEERBase", mode, kTRUE);
885 success &= LoadLibrary("ESD", mode, kTRUE);
886 success &= LoadLibrary("AOD", mode, kTRUE);
887 success &= LoadLibrary("ANALYSIS", mode, kTRUE);
888 success &= LoadLibrary("ANALYSISalice", mode, kTRUE);
889 if (useCORRFW) success &= LoadLibrary("CORRFW", mode, kTRUE);
890 } else {
891 success &= LoadLibrary("libSTEERBase.so", mode);
892 success &= LoadLibrary("libESD.so", mode);
893 success &= LoadLibrary("libAOD.so", mode);
894 success &= LoadLibrary("libANALYSIS.so", mode);
895 success &= LoadLibrary("libANALYSISalice.so", mode);
896 if (useCORRFW) success &= LoadLibrary("libCORRFW.so", mode);
897 gROOT->ProcessLine(".include $ALICE_ROOT/include");
898 }
c6e7c68c 899 break;
900 case 1:
901 Int_t ires = -1;
a42c0df6 902 if (useAFPAR && !gSystem->AccessPathName(AFversion)) ires = gProof->UploadPackage(AFversion);
c6e7c68c 903 if (ires < 0) {
904 success &= LoadLibrary("STEERBase", mode);
905 success &= LoadLibrary("ESD", mode);
906 success &= LoadLibrary("AOD", mode);
907 success &= LoadLibrary("ANALYSIS", mode);
908 success &= LoadLibrary("ANALYSISalice", mode);
909 if (useCORRFW) success &= LoadLibrary("CORRFW", mode);
910 } else {
911 ires = gProof->EnablePackage(AFversion);
2b142d4b 912 if (ires<0) success = kFALSE;
c6e7c68c 913 if (useCORRFW) success &= LoadLibrary("CORRFW", mode);
914 }
c6e7c68c 915 break;
916 default:
a42c0df6 917 ::Error("AnalysisTrainNew.C::LoadCommonLibraries", "Unknown run mode: %s", mode);
c6e7c68c 918 return kFALSE;
919 }
920 if (success) {
a42c0df6 921 ::Info("AnalysisTrainNew.C::LoadCommodLibraries", "Load common libraries: SUCCESS");
922 ::Info("AnalysisTrainNew.C::LoadCommodLibraries", "Include path for Aclic compilation:\n%s",
c6e7c68c 923 gSystem->GetIncludePath());
924 } else {
a42c0df6 925 ::Info("AnalysisTrainNew.C::LoadCommodLibraries", "Load common libraries: FAILED");
c6e7c68c 926 }
927
928 return success;
929}
930
931//______________________________________________________________________________
932Bool_t LoadAnalysisLibraries(const char *mode)
933{
934// Load common analysis libraries.
935 Bool_t success = kTRUE;
f362f3b6 936 if (useTender) {
937 if (!LoadLibrary("TENDER", mode, kTRUE) ||
938 !LoadLibrary("TENDERSupplies", mode, kTRUE)) return kFALSE;
939 }
b0184943 940 if (iESDfilter || iPWG3MuonTrain) {
c6e7c68c 941 if (!LoadLibrary("PWG3base", mode, kTRUE) ||
942 !LoadLibrary("PWG3muon", mode, kTRUE)) return kFALSE;
943 }
944 // JETAN
945 if (iJETAN) {
946 if (!LoadLibrary("JETAN", mode, kTRUE)) return kFALSE;
ff205e4a 947 }
948 if (iJETANdelta) {
949 if (!LoadLibrary("JETAN", mode, kTRUE) ||
950 !LoadLibrary("CGAL", mode, kTRUE) ||
951 !LoadLibrary("fastjet", mode, kTRUE) ||
952 !LoadLibrary("siscone", mode, kTRUE) ||
953 !LoadLibrary("SISConePlugin", mode, kTRUE) ||
954 !LoadLibrary("FASTJETAN", mode, kTRUE)) return kFALSE;
955 }
c6e7c68c 956 // PWG4 particle correlations
274ff025 957 if (iPWG4partcorr) {
b9748bfd 958 if (!LoadLibrary("EMCALUtils", mode, kTRUE) ||
e4080179 959 !LoadLibrary("PHOSUtils", mode, kTRUE) ||
b9748bfd 960 !LoadLibrary("PWG4PartCorrBase", mode, kTRUE) ||
c6e7c68c 961 !LoadLibrary("PWG4PartCorrDep", mode, kTRUE)) return kFALSE;
c6e7c68c 962 }
c3a83447 963 // PWG4 gamma conversion
964 if (iPWG4gammaconv) {
965 if (!LoadLibrary("PWG4GammaConv", mode, kTRUE)) return kFALSE;
966 }
5c4c538a 967 // PWG4 omega to 3 pions
968 if (iPWG4omega3pi) {
969 if (!LoadLibrary("PWG4omega3pi", mode, kTRUE)) return kFALSE;
970 }
c6e7c68c 971 // PWG2 task protons
972 if (iPWG2spectra) {
973 if (!LoadLibrary("PWG2spectra", mode, kTRUE)) return kFALSE;
974 }
975 // PWG2 flow
976 if (iPWG2flow) {
e4d0b516 977 if (!LoadLibrary("PWG2flowCommon", mode, kTRUE) ||
978 !LoadLibrary("PWG2flowTasks", mode, kTRUE)) return kFALSE;
c6e7c68c 979 }
980 // PWG2 resonances
e4080179 981 if (iPWG2res || iPWG2rsneff) {
c6e7c68c 982 if (!LoadLibrary("PWG2resonances", mode, kTRUE)) return kFALSE;
983 }
081194a7 984 // PWG2 kink
985 if (iPWG2kink) {
986 if (!LoadLibrary("PWG2kink", mode, kTRUE)) return kFALSE;
987 }
c0893d28 988 // PWG2 unicor
989 if (iPWG2unicor) {
990 if (!LoadLibrary("PWG2unicor", mode, kTRUE)) return kFALSE;
991 }
992 // PWG2 evchar
993 if (iPWG2evchar) {
994 if (!LoadLibrary("PWG2evchar", mode, kTRUE)) return kFALSE;
995 }
c6e7c68c 996 // PWG2 femtoscopy
997 if (iPWG2femto) {
998 if (!LoadLibrary("PWG2AOD", mode, kTRUE) ||
999 !LoadLibrary("PWG2femtoscopy", mode, kTRUE) ||
1000 !LoadLibrary("PWG2femtoscopyUser", mode, kTRUE)) return kFALSE;
6e428ea7 1001// TFile::Cp(gSystem->ExpandPathName("$(ALICE_ROOT)/PWG2/FEMTOSCOPY/macros/ConfigFemtoAnalysis.C"), Form("%s/ConfigFemtoAnalysis.C", train_name.Data()));
1002// anaLibs += "ConfigFemtoAnalysis.C ";
1003 }
1004 // PWG2 FORWARD
1005 if (iPWG2forward) {
0ad3ea1f 1006 if (!LoadLibrary("PWG2forward2", mode, kTRUE)) return kFALSE;
c6e7c68c 1007 }
2a47e7b4 1008 // PWG3 Vertexing HF
e4080179 1009 if (iPWG3vertexing || iPWG3d2h) {
15dac83a 1010 if (!LoadLibrary("PWG3base", mode, kTRUE) ||
1011 !LoadLibrary("PWG3vertexingHF", mode, kTRUE)) return kFALSE;
c6e7c68c 1012 }
2a47e7b4 1013 // PWG3 hfe
1014 if (iPWG3hfe) {
1015 if (!LoadLibrary("PWG3hfe", mode, kTRUE)) return kFALSE;
1016 }
1017
a42c0df6 1018 ::Info("AnalysisTrainNew.C::LoadAnalysisLibraries", "Load other libraries: SUCCESS");
c6e7c68c 1019 return kTRUE;
1020}
1021
1022//______________________________________________________________________________
1023Bool_t LoadLibrary(const char *module, const char *mode, Bool_t rec=kFALSE)
1024{
1025// Load a module library in a given mode. Reports success.
1026 Int_t imode = -1;
1027 Int_t result;
1028 TString smodule(module);
1029 if (!strcmp(mode, "LOCAL")) imode = 0;
1030 if (!strcmp(mode, "PROOF")) imode = 1;
1031 if (!strcmp(mode, "GRID")) imode = 2;
1032 TString mod(module);
1033 if (!mod.Length()) {
a42c0df6 1034 ::Error("AnalysisTrainNew.C::LoadLibrary", "Empty module name");
c6e7c68c 1035 return kFALSE;
1036 }
1037 // If a library is specified, just load it
1038 if (smodule.EndsWith(".so")) {
1039 mod.Remove(mod.Index(".so"));
1040 result = gSystem->Load(mod);
1041 if (result < 0) {
a42c0df6 1042 ::Error("AnalysisTrainNew.C::LoadLibrary", "Could not load library %s", module);
c6e7c68c 1043 return kFALSE;
1044 }
1045 if (rec) anaLibs += Form("%s.so ",mod.Data());
1046 return kTRUE;
1047 }
1048 // Check if the library is already loaded
1049 if (strlen(gSystem->GetLibraries(Form("%s.so", module), "", kFALSE)) > 0)
1050 return kTRUE;
1051 switch (imode) {
1052 case 0:
1053 case 2:
1054 if (usePAR) {
1055 result = SetupPar(module);
1056 if (rec) anaPars += Form("%s.par ", module);
1057 } else {
1058 result = gSystem->Load(Form("lib%s.so", module));
1059 if (rec) anaLibs += Form("lib%s.so ", module);
1060 }
1061 break;
1062 case 1:
1063 result = gProof->UploadPackage(module);
1064 if (result<0) {
1065 result = gProof->UploadPackage(gSystem->ExpandPathName(Form("$ALICE_ROOT/%s.par", module)));
1066 if (result<0) {
a42c0df6 1067 ::Error("AnalysisTrainNew.C::LoadLibrary", "Could not find module %s.par in current directory nor in $ALICE_ROOT", module);
c6e7c68c 1068 return kFALSE;
1069 }
1070 }
1071 result = gProof->EnablePackage(module);
1072 break;
1073 default:
1074 return kFALSE;
1075 }
1076 if (result < 0) {
a42c0df6 1077 ::Error("AnalysisTrainNew.C::LoadLibrary", "Could not load module %s", module);
c6e7c68c 1078 return kFALSE;
1079 }
1080 return kTRUE;
1081}
1082
1083
1084//______________________________________________________________________________
1085TChain *CreateChain(const char *mode, const char *plugin_mode)
1086{
1087// Create the input chain
1088 Int_t imode = -1;
1089 if (!strcmp(mode, "LOCAL")) imode = 0;
1090 if (!strcmp(mode, "PROOF")) imode = 1;
1091 if (!strcmp(mode, "GRID")) imode = 2;
1092 TChain *chain = NULL;
1093 // Local chain
1094 switch (imode) {
1095 case 0:
1096 if (iAODanalysis) {
a42c0df6 1097 if (!local_xmldataset.Length()) {
c6e7c68c 1098 // Local AOD
1099 chain = new TChain("aodTree");
274ff025 1100 if (gSystem->AccessPathName("data/AliAOD.root"))
a42c0df6 1101 ::Error("AnalysisTrainNew.C::CreateChain", "File: AliAOD.root not in ./data dir");
b160b576 1102 else {
1103 if (!saveTrain) chain->Add("data/AliAOD.root");
1104 else chain->Add("../data/AliAOD.root");
1105 }
c6e7c68c 1106 } else {
1107 // Interactive AOD
a42c0df6 1108 chain = CreateChainSingle(local_xmldataset, "aodTree");
c6e7c68c 1109 }
1110 } else {
a42c0df6 1111 if (!local_xmldataset.Length()) {
c6e7c68c 1112 // Local ESD
1113 chain = new TChain("esdTree");
099d8f33 1114 if (gSystem->AccessPathName("data/AliESDs.root"))
a42c0df6 1115 ::Error("AnalysisTrainNew.C::CreateChain", "File: AliESDs.root not in ./data dir");
b160b576 1116 else {
1117 if (!saveTrain) chain->Add("data/AliESDs.root");
1118 else chain->Add("../data/AliESDs.root");
1119 }
c6e7c68c 1120 } else {
1121 // Interactive ESD
a42c0df6 1122 chain = CreateChainSingle(local_xmldataset, "esdTree");
c6e7c68c 1123 }
1124 }
1125 break;
1126 case 1:
1127 break;
1128 case 2:
1129 if (usePLUGIN) {
6e428ea7 1130// AliAnalysisGrid *alienHandler = CreateAlienHandler(plugin_mode);
1131// AliAnalysisManager::GetAnalysisManager()->SetGridHandler(alienHandler);
c6e7c68c 1132 } else {
1133 TString treeName = "esdTree";
1134 if (iAODanalysis) treeName = "aodTree";
1135 chain = CreateChainSingle("wn.xml", treeName);
1136 }
1137 break;
1138 default:
1139 }
1140 if (chain && chain->GetNtrees()) return chain;
1141 return NULL;
1142}
1143
1144//______________________________________________________________________________
1145TChain* CreateChainSingle(const char* xmlfile, const char *treeName)
1146{
1147 printf("*******************************\n");
1148 printf("*** Getting the ESD Chain ***\n");
1149 printf("*******************************\n");
1150 TAlienCollection * myCollection = TAlienCollection::Open(xmlfile);
1151
1152 if (!myCollection) {
a42c0df6 1153 ::Error("AnalysisTrainNew.C::CreateChainSingle", "Cannot create an AliEn collection from %s", xmlfile) ;
c6e7c68c 1154 return NULL ;
1155 }
1156
1157 TChain* chain = new TChain(treeName);
1158 myCollection->Reset() ;
1159 while ( myCollection->Next() ) chain->Add(myCollection->GetTURL("")) ;
1160 chain->ls();
1161 return chain;
1162}
1163
1164//______________________________________________________________________________
1165Int_t SetupPar(char* pararchivename)
1166{
1167 if (!pararchivename || !strlen(pararchivename)) return -1;
1168 char processline[1024];
1169 if (gSystem->AccessPathName(Form("%s.par", pararchivename))) {
1170 if (!gSystem->AccessPathName(Form("%s/%s.par", gSystem->Getenv("ALICE_ROOT"),pararchivename))) {
a42c0df6 1171 ::Info("AnalysisTrainNew.C::SetupPar", "Getting %s.par from $ALICE_ROOT", pararchivename);
c6e7c68c 1172 TFile::Cp(gSystem->ExpandPathName(Form("$ALICE_ROOT/%s.par", pararchivename)),
1173 Form("%s.par",pararchivename));
1174 } else {
a42c0df6 1175 ::Error("AnalysisTrainNew.C::SetupPar", "Cannot find %s.par", pararchivename);
c6e7c68c 1176 return -1;
1177 }
1178 }
a42c0df6 1179 if (usePLUGIN && saveTrain) gSystem->Exec(Form("ln -s ../%s.par %s",pararchivename, train_name.Data()));
c6e7c68c 1180 gSystem->Exec(Form("tar xvzf %s.par", pararchivename));
1181
1182 TString ocwd = gSystem->WorkingDirectory();
1183 if (!gSystem->ChangeDirectory(pararchivename)) return -1;
1184
1185 // check for BUILD.sh and execute
1186 if (!gSystem->AccessPathName("PROOF-INF/BUILD.sh")) {
1187 printf("*******************************\n");
1188 printf("*** Building PAR archive ***\n");
1189 printf("*******************************\n");
1190 if (gSystem->Exec("PROOF-INF/BUILD.sh")) {
1191 Error("runProcess","Cannot Build the PAR Archive! - Abort!");
1192 return -1;
1193 }
1194 }
1195
1196 // check for SETUP.C and execute
1197 if (!gSystem->AccessPathName("PROOF-INF/SETUP.C")) {
1198 printf("*******************************\n");
1199 printf("*** Setup PAR archive ***\n");
1200 printf("*******************************\n");
1201 gROOT->Macro("PROOF-INF/SETUP.C");
1202 }
1203 if (!gSystem->ChangeDirectory(ocwd.Data())) return -1;
1204 return 0;
1205}
1206
1207//______________________________________________________________________________
5c4c538a 1208AliAnalysisAlien* CreateAlienHandler(const char *plugin_mode)
c6e7c68c 1209{
1210// Check if user has a valid token, otherwise make one. This has limitations.
1211// One can always follow the standard procedure of calling alien-token-init then
1212// source /tmp/gclient_env_$UID in the current shell.
1213 if (!AliAnalysisGrid::CreateToken()) return NULL;
1214 AliAnalysisAlien *plugin = new AliAnalysisAlien();
1215// Set the run mode (can be "full", "test", "offline", "submit" or "terminate")
1216 plugin->SetRunMode(plugin_mode);
5c4c538a 1217 if (useProductionMode) plugin->SetProductionMode();
f362f3b6 1218 if (!outputSingleFolder.IsNull()) {
1219 plugin->SetOutputSingleFolder(outputSingleFolder);
1220 plugin->SetOutputToRunNo();
1221 }
0d5d317c 1222 plugin->SetJobTag(job_tag);
c6e7c68c 1223 plugin->SetNtestFiles(1);
6e428ea7 1224// plugin->SetPreferedSE("ALICE::NIHAM::File");
c6e7c68c 1225// Set versions of used packages
54853975 1226// plugin->SetAPIVersion("V2.4");
e7c25d04 1227 plugin->SetAPIVersion("V1.1x");
c6e7c68c 1228 plugin->SetROOTVersion(root_version);
1229 plugin->SetAliROOTVersion(aliroot_version);
1230// Declare input data to be processed.
1231// Method 1: Create automatically XML collections using alien 'find' command.
1232// Define production directory LFN
1233 plugin->SetGridDataDir(alien_datadir);
1234// Set data search pattern
f362f3b6 1235 if (runOnData) {
1236 plugin->SetRunPrefix("000");
1237 plugin->SetDataPattern("*ESDs/pass1/*ESDs.root");
1238 } else {
1239 plugin->SetDataPattern("*ESDs.root");
1240 }
c6e7c68c 1241// ...then add run numbers to be considered
f362f3b6 1242// if (!iAODanalysis) plugin->SetRunRange(run_range[0], run_range[1]);
1243 for (Int_t i=0; i<10; i++) {
1244 if (run_numbers[i]==0) break;
1245 plugin->AddRunNumber(run_numbers[i]);
1246 }
c6e7c68c 1247// Method 2: Declare existing data files (raw collections, xml collections, root file)
1248// If no path mentioned data is supposed to be in the work directory (see SetGridWorkingDir())
1249// XML collections added via this method can be combined with the first method if
1250// the content is compatible (using or not tags)
1251// plugin->AddDataFile("tag.xml");
1252// plugin->AddDataFile("/alice/data/2008/LHC08c/000057657/raw/Run57657.Merged.RAW.tag.root");
1253// Define alien work directory where all files will be copied. Relative to alien $HOME.
4d670889 1254 plugin->SetGridWorkingDir(train_name);
c6e7c68c 1255// Declare alien output directory. Relative to working directory.
371c967e 1256 if (!alien_outdir.Length()) alien_outdir = Form("output_%s",train_name.Data());
1257 plugin->SetGridOutputDir(alien_outdir);
c6e7c68c 1258
1259 TString ana_sources = "";
1260 TString ana_add = "";
1261 if (usePAR && anaPars.Length()) {
7581b1bc 1262 printf("%s\n", anaPars.Data());
c6e7c68c 1263 TObjArray *arr;
1264 TObjString *objstr;
1265 arr = anaPars.Tokenize(" ");
1266 TIter next(arr);
1267 while ((objstr=(TObjString*)next())) plugin->EnablePackage(objstr->GetString());
1268 delete arr;
1269 }
ff205e4a 1270// Add external packages
1271 if (iJETANdelta) {
1272 plugin->AddExternalPackage("boost::v1_38_0");
1273 plugin->AddExternalPackage("cgal::v3.3.1");
1274 plugin->AddExternalPackage("fastjet::v2.4.0");
1275 }
c6e7c68c 1276
1277// Declare the analysis source files names separated by blancs. To be compiled runtime
1278// using ACLiC on the worker nodes.
1279 ana_sources = ana_sources.Strip();
1280// Declare all libraries (other than the default ones for the framework. These will be
1281// loaded by the generated analysis macro. Add all extra files (task .cxx/.h) here.
1282 anaLibs = anaLibs.Strip();
1283 if (ana_sources.Length()) plugin->SetAnalysisSource(ana_sources);
1284 if (anaLibs.Length()) plugin->SetAdditionalLibs(anaLibs);
1285
1286// Declare the output file names separated by blancs.
1287// (can be like: file.root or file.root@ALICE::Niham::File)
1288 plugin->SetDefaultOutputs();
275942e0 1289 plugin->SetMergeExcludes(mergeExclude);
1290 plugin->SetMaxMergeFiles(maxMergeFiles);
1291 plugin->SetNrunsPerMaster(nRunsPerMaster);
c6e7c68c 1292// Optionally define the files to be archived.
526b1502 1293// plugin->SetOutputArchive("log_archive.zip:stdout,stderr@ALICE::NIHAM::File root_archive.zip:AliAOD.root,AOD.tag.root@ALICE::NIHAM::File");
6e428ea7 1294
1295
1296 // Put default output files to archive
1297 TString listhists = "";
1298 TString listaods = "";
1299 AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
1300 TIter next(mgr->GetOutputs());
1301 AliAnalysisDataContainer *output;
1302 while ((output=(AliAnalysisDataContainer*)next())) {
1303 const char *filename = output->GetFileName();
1304 if (!(strcmp(filename, "default"))) {
1305 if (!mgr->GetOutputEventHandler()) continue;
1306 filename = mgr->GetOutputEventHandler()->GetOutputFileName();
1307 if (listaods.Length()) listaods += ",";
1308 listaods += filename;
54853975 1309 listaods += ",";
1310 listaods += "pyxsec_hists.root";
6e428ea7 1311 } else {
54853975 1312 if (!strcmp(filename, "pyxsec_hists.root")) continue;
e4080179 1313 if (listhists.Contains(filename)) continue;
6e428ea7 1314 if (listhists.Length()) listhists += ",";
1315 listhists += filename;
1316 }
1317 }
1318 if (mgr->GetExtraFiles().Length()) {
1319 if (listaods.Length()) listaods += ",";
1320 listaods += mgr->GetExtraFiles();
1321 listaods.ReplaceAll(" ", ",");
1322 }
e7c25d04 1323 if (listhists.Length()) listhists = Form("hist_archive.zip:%s@%s", listhists.Data(), outputStorages.Data());
1324 if (listaods.Length()) listaods = Form("aod_archive.zip:%s@%s", listaods.Data(), outputStorages.Data());
6e428ea7 1325 if (!listhists.Length() && !listaods.Length()) {
1326 ::Fatal("AnalysisTrainNew", "No task output !");
1327 }
4d670889 1328 TString outputArchive = Form("log_archive.zip:stderr@%s", outputStorages.Data());
6e428ea7 1329 if (listaods.Length()) {
1330 outputArchive += " ";
1331 outputArchive += listaods;
1332 }
1333 if (listhists.Length()) {
1334 outputArchive += " ";
1335 outputArchive += listhists;
1336 }
e4080179 1337// Set friends
1338// if (iAODanalysis && iPWG3d2h)
1339// plugin->SetFriendChainName("AliAOD.VertexingHF.root");
f362f3b6 1340// plugin->SetOutputArchive(outputArchive);
c6e7c68c 1341// Optionally set a name for the generated analysis macro (default MyAnalysis.C)
a42c0df6 1342 plugin->SetAnalysisMacro(Form("%s.C", train_name.Data()));
c6e7c68c 1343// Optionally set maximum number of input files/subjob (default 100, put 0 to ignore)
275942e0 1344 plugin->SetSplitMaxInputFileNumber(nFilesPerJob);
c6e7c68c 1345// Optionally set number of failed jobs that will trigger killing waiting sub-jobs.
1346// plugin->SetMaxInitFailed(5);
1347// Optionally resubmit threshold.
1348// plugin->SetMasterResubmitThreshold(90);
1349// Optionally set time to live (default 30000 sec)
54853975 1350 plugin->SetTTL(70000);
c6e7c68c 1351// Optionally set input format (default xml-single)
1352 plugin->SetInputFormat("xml-single");
1353// Optionally modify the name of the generated JDL (default analysis.jdl)
a42c0df6 1354 plugin->SetJDLName(Form("%s.jdl", train_name.Data()));
7ceeacc7 1355// Optionally modify the executable name (default analysis.sh)
a42c0df6 1356 plugin->SetExecutable(Form("%s.sh", train_name.Data()));
c6e7c68c 1357// Optionally modify job price (default 1)
1358 plugin->SetPrice(1);
4d670889 1359// Merge via JDL
1360 plugin->SetMergeViaJDL(useMergeViaJDL);
1361// Use fastread option
1362 plugin->SetFastReadOption(useFastReadOption);
1363// UseOverwrite mode
1364 plugin->SetOverwriteMode(useOverwriteMode);
f362f3b6 1365 plugin->SetExecutableCommand("aliroot -b -q");
c6e7c68c 1366// Optionally modify split mode (default 'se')
f362f3b6 1367 plugin->SetSplitMode("se");
c6e7c68c 1368 return plugin;
1369}
a42c0df6 1370
1371//______________________________________________________________________________
1372void WriteConfig()
1373{
1374// Write train configuration in a file. The file name has the format:
1375// train_[trainName]_ddMonthyyyy_time.C
371c967e 1376 if (useDATE) {
0d5d317c 1377 gSystem->Exec("date +%d%b%Y_%Hh%M > date.tmp");
1378 ifstream fdate("date.tmp");
1379 if (!fdate.is_open()) {
1380 ::Error("AnalysisTrainNew.C::Export","Could not generate file name");
1381 return;
1382 }
371c967e 1383 const char date[64];
1384 fdate.getline(date,64);
1385 fdate.close();
1386 gSystem->Exec("rm date.tmp");
f362f3b6 1387 train_name = Form("%s_%s", train_name.Data(), date);
371c967e 1388 }
a42c0df6 1389 TString cdir = gSystem->WorkingDirectory();
1390 gSystem->MakeDirectory(train_name);
1391 gSystem->ChangeDirectory(train_name);
1392 ofstream out;
0d5d317c 1393 out.open(Form("%sConfig.C",train_name.Data()), ios::out);
a42c0df6 1394 if (out.bad()) {
1395 ::Error("AnalysisTrainNew.C::Export", "Cannot open ConfigTrain.C for writing");
1396 return;
1397 }
1398 out << "{" << endl;
1399 out << " train_name = " << "\"" << train_name.Data() << "\";" << endl;
1400 out << " proof_cluster = " << "\"" << proof_cluster.Data() << "\";" << endl;
1401 out << " useAFPAR = " << useAFPAR << ";" << endl;
1402 if (useAFPAR)
1403 out << " AFversion = " << AFversion.Data() << ";" << endl;
1404 out << " proof_dataset = " << "\"" << proof_dataset.Data() << "\";" << endl;
1405 out << " usePLUGIN = " << usePLUGIN << ";" << endl;
1406 out << " usePAR = " << usePAR << ";" << endl;
1407 out << " useCPAR = " << useCPAR << ";" << endl;
1408 out << " root_version = " << "\"" << root_version.Data() << "\";" << endl;
1409 out << " aliroot_version = " << "\"" << aliroot_version.Data() << "\";" << endl;
1410 out << " alien_datadir = " << "\"" << alien_datadir.Data() << "\";" << endl;
371c967e 1411 if (!alien_outdir.Length()) alien_outdir = Form("output_%s",train_name.Data());
1412 out << " alien_outdir = " << "\"" << alien_outdir.Data() << "\";" << endl;
275942e0 1413 out << " maxMergeFiles = " << maxMergeFiles << ";" << endl;
1414 out << " mergeExclude = " << "\"" << mergeExclude.Data() << "\";" << endl;
1415 out << " nRunsPerMaster = " << nRunsPerMaster << ";" << endl;
1416 out << " nFilesPerJob = " << nFilesPerJob << ";" << endl;
3b1610cf 1417// for (Int_t i=0; i<10; i++) {
1418// if (run_numbers[i])
1419// out << " run_numbers[" << i << "] = " << run_numbers[i] << ";" << endl;
1420// }
f362f3b6 1421// out << " run_range[0] = " << run_range[0] << ";" << endl;
1422// out << " run_range[1] = " << run_range[1] << ";" << endl;
4d670889 1423 out << " usePhysicsSelection = " << usePhysicsSelection << ";" << endl;
f362f3b6 1424 out << " useTender = " << useTender << ";" << endl;
4d670889 1425 out << " useMergeViaJDL = " << useMergeViaJDL << ";" << endl;
1426 out << " useOverwriteMode = " << useOverwriteMode << ";" << endl;
1427 out << " useFastReadOption = " << useFastReadOption << ";" << endl;
a42c0df6 1428 out << " useDBG = " << useDBG << ";" << endl;
1429 out << " useMC = " << useMC << ";" << endl;
1430 out << " useTAGS = " << useTAGS << ";" << endl;
1431 out << " useKFILTER = " << useKFILTER << ";" << endl;
1432 out << " useTR = " << useTR << ";" << endl;
1433 out << " useCORRFW = " << useCORRFW << ";" << endl;
1434 out << " useAODTAGS = " << useAODTAGS << ";" << endl;
1435 out << " saveTrain = " << "kFALSE;" << endl << endl;
1436 out << " // Analysis modules" << endl;
1437 out << " iAODanalysis = " << iAODanalysis << ";" << endl;
1438 out << " iAODhandler = " << iAODhandler << ";" << endl;
1439 out << " iESDfilter = " << iESDfilter << ";" << endl;
1440 out << " iMUONcopyAOD = " << iMUONcopyAOD << ";" << endl;
1441 out << " iJETAN = " << iJETAN << ";" << endl;
ff205e4a 1442 out << " iJETANdelta = " << iJETANdelta << ";" << endl;
a42c0df6 1443 out << " iPWG4partcorr = " << iPWG4partcorr << ";" << endl;
c3a83447 1444 out << " iPWG4gammaconv = " << iPWG4gammaconv << ";" << endl;
5c4c538a 1445 out << " iPWG4omega3pi = " << iPWG4omega3pi << ";" << endl;
2a47e7b4 1446 out << " iPWG3vertexing = " << iPWG3vertexing << ";" << endl;
1447 out << " iPWG3hfe = " << iPWG3hfe << ";" << endl;
e4080179 1448 out << " iPWG3d2h = " << iPWG3d2h << ";" << endl;
ff205e4a 1449 out << " iPWG3d0mass = " << iPWG3d0mass << ";" << endl;
1450 out << " iPWG3d0massLS = " << iPWG3d0massLS << ";" << endl;
1451 out << " iPWG3dplus = " << iPWG3dplus << ";" << endl;
1452 out << " iPWG3LSd0 = " << iPWG3LSd0 << ";" << endl;
1453 out << " iPWG3LSjpsi = " << iPWG3LSjpsi << ";" << endl;
1454 out << " iPWG3CFd0 = " << iPWG3CFd0 << ";" << endl;
1455 out << " iPWG3promptd0 = " << iPWG3promptd0 << ";" << endl;
b0184943 1456 out << " iPWG3MuonTrain = " << iPWG3MuonTrain << ";" << endl;
a42c0df6 1457 out << " iPWG2femto = " << iPWG2femto << ";" << endl;
1458 out << " iPWG2spectra = " << iPWG2spectra << ";" << endl;
0d5d317c 1459 out << " iPWG2protons = " << iPWG2protons << ";" << endl;
1460 out << " iPWG2checkcascade = " << iPWG2checkcascade << ";" << endl;
1461 out << " iPWG2perfcascade = " << iPWG2perfcascade << ";" << endl;
1462 out << " iPWG2checkv0 = " << iPWG2checkv0 << ";" << endl;
1463 out << " iPWG2strange = " << iPWG2strange << ";" << endl;
ff205e4a 1464 out << " iPWG2central = " << iPWG2central << ";" << endl;
a42c0df6 1465 out << " iPWG2flow = " << iPWG2flow << ";" << endl;
1466 out << " iPWG2res = " << iPWG2res << ";" << endl;
e4080179 1467 out << " iPWG2rsneff = " << iPWG2rsneff << ";" << endl;
a42c0df6 1468 out << " iPWG2kink = " << iPWG2kink << ";" << endl;
0d5d317c 1469 out << " iPWG2kinkESDMC = " << iPWG2kinkESDMC << ";" << endl;
ff205e4a 1470 out << " iPWG2kinkLSKstar = " << iPWG2kinkLSKstar << ";" << endl;
1471 out << " iPWG2kinkLSL1520 = " << iPWG2kinkLSL1520 << ";" << endl;
1472 out << " iPWG2kinkLSPhi = " << iPWG2kinkLSPhi << ";" << endl;
a7a4e096 1473 out << " iPWG2kinkKstarESD = " << iPWG2kinkKstarESD << ";" << endl;
1474 out << " iPWG2kinkKstarMC = " << iPWG2kinkKstarMC << ";" << endl;
1475 out << " iPWG2kinkL1520ESD = " << iPWG2kinkL1520ESD << ";" << endl;
1476 out << " iPWG2kinkL1520MC = " << iPWG2kinkL1520MC << ";" << endl;
1477 out << " iPWG2kinkPhiESD = " << iPWG2kinkPhiESD << ";" << endl;
1478 out << " iPWG2kinkPhiMC = " << iPWG2kinkPhiMC << ";" << endl;
c0893d28 1479 out << " iPWG2unicor = " << iPWG2unicor << ";" << endl;
1480 out << " iPWG2evchar = " << iPWG2evchar << ";" << endl;
6e428ea7 1481 out << " iPWG2forward = " << iPWG2forward << ";" << endl << endl;
1482 out << "// Configuration fot the wagons" << endl;
1483 out << " configPWG2femto = \"" << configPWG2femto << "\";" << endl;
04de1044 1484 out << " configPWG3d2h = \"" << configPWG3d2h << "\";" << endl;
a42c0df6 1485 out << "}" << endl;
1486 ::Info("AnalysisTrainNew.C::WriteConfig", "Train configuration wrote to file %s", Form("config_%s.C", train_name.Data()));
1487 gSystem->ChangeDirectory(cdir);
1488}
1489
1490//______________________________________________________________________________
1491Bool_t LoadConfig(const char *filename)
1492{
1493// Read train configuration from file
1494 if (gSystem->AccessPathName(filename)) {
1495 ::Error("AnalysisTrainNew.C::LoadConfig", "Config file name not found");
1496 return kFALSE;
1497 }
1498 gROOT->ProcessLine(Form(".x %s", filename));
1499 ::Info("AnalysisTrainNew.C::LoadConfig", "Train configuration loaded from file %s", filename);
1500 return kTRUE;
1501}