]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG4/totEt/macros/CreateAlienHandlerCaloEtSim.C
Updates to get jobs running on the grid
[u/mrichter/AliRoot.git] / PWG4 / totEt / macros / CreateAlienHandlerCaloEtSim.C
1 AliAnalysisGrid* CreateAlienHandlerCaloEtSim(TString outputDir, TString outputName, const char * pluginRunMode)
2 {
3   // Check if user has a valid token, otherwise make one. This has limitations.
4   // One can always follow the standard procedure of calling alien-token-init then
5   //   source /tmp/gclient_env_$UID in the current shell.
6   if (!AliAnalysisGrid::CreateToken()) return NULL;
7   AliAnalysisAlien *plugin = new AliAnalysisAlien();
8
9   // Overwrite all generated files, datasets and output results from a previous session
10   plugin->SetOverwriteMode();
11   // Set the run mode (can be "full", "test", "offline", "submit" or "terminate")
12   // plugin->SetRunMode("full");  // VERY IMPORTANT - DECRIBED BELOW
13   // plugin->SetRunMode("test");  // VERY IMPORTANT - DECRIBED BELOW
14   plugin->SetRunMode(pluginRunMode);  // VERY IMPORTANT - DECRIBED BELOW
15
16   // Set versions of used packages
17    plugin->SetAPIVersion("V1.1x");
18    plugin->SetROOTVersion("v5-27-06b");
19    plugin->SetAliROOTVersion("v4-21-11-AN");
20   // Declare input data to be processed.
21
22   // Method 1: Create automatically XML collections using alien 'find' command.
23   // Define production directory LFN
24   //   plugin->SetGridDataDir("/alice/sim/LHC10a18");
25   // Set data search pattern
26   //   plugin->SetDataPattern("*ESDs.root");  // simulated, tags not used
27   //   plugin->SetDataPattern("*ESDs/pass4/*ESDs.root"); // real data check reco pass and data base directory
28   //   plugin->SetRunPrefix("000");   // real data
29   //   plugin->SetDataPattern("*tag.root");  // Use ESD tags (same applies for AOD's)
30   // ...then add run numbers to be considered
31   //   plugin->AddRunNumber(125020);    // simulated
32   //   plugin->AddRunNumber(104065);  // real data
33
34    plugin->SetGridDataDir("/alice/sim/LHC10d4");
35    plugin->SetDataPattern("*ESDs.root");
36    plugin->AddRunNumber("120741");//smallest of the above
37   // Method 2: Declare existing data files (raw collections, xml collections, root file)
38   // If no path mentioned data is supposed to be in the work directory (see SetGridWorkingDir())
39   // XML collections added via this method can be combined with the first method if
40   // the content is compatible (using or not tags)
41   //plugin->AddDataFile("tag.xml");
42   // plugin->AddDataFile("wn.xml"); // test
43   // file generated with:  find -x tag /alice/sim/LHC10d1/117222/* AliESDs.root > tag.xml
44
45   // Define alien work directory where all files will be copied. Relative to alien $HOME.
46   plugin->SetGridWorkingDir(outputDir.Data());
47   // Declare alien output directory. Relative to working directory.
48   plugin->SetGridOutputDir("output"); // In this case will be $HOME/work/output
49   // Declare the analysis source files names separated by blancs. To be compiled runtime IN THE SAME ORDER THEY ARE LISTED
50   // using ACLiC on the worker nodes.
51   plugin->SetAnalysisSource("AliAnalysisEtCuts.cxx AliAnalysisHadEtCorrections.cxx AliAnalysisEtCommon.cxx AliAnalysisEt.cxx AliAnalysisEtMonteCarlo.cxx AliAnalysisEtMonteCarloPhos.cxx AliAnalysisEtMonteCarloEmcal.cxx AliAnalysisEtReconstructed.cxx AliAnalysisEtReconstructedPhos.cxx AliAnalysisEtReconstructedEmcal.cxx AliAnalysisTaskTotEt.cxx");
52   // Declare all libraries (other than the default ones for the framework. These will be
53   // loaded by the generated analysis macro. Add all extra files (task .cxx/.h) here.
54   plugin->SetAdditionalLibs("AliAnalysisEtCuts.h AliAnalysisEt.h AliAnalysisEtMonteCarlo.h AliAnalysisEtMonteCarloPhos.h AliAnalysisEtMonteCarloEmcal.h AliAnalysisEtReconstructed.h AliAnalysisEtReconstructedPhos.h AliAnalysisEtReconstructedEmcal.h AliAnalysisTaskTotEt.h AliAnalysisEtCuts.cxx AliAnalysisEt.cxx AliAnalysisEtMonteCarlo.cxx AliAnalysisEtMonteCarloPhos.cxx AliAnalysisEtMonteCarloEmcal.cxx AliAnalysisEtReconstructed.cxx AliAnalysisEtReconstructedPhos.cxx AliAnalysisEtReconstructedEmcal.cxx AliAnalysisTaskTotEt.cxx  AliAnalysisEtCommon.cxx  AliAnalysisEtCommon.h AliAnalysisHadEtCorrections.h AliAnalysisHadEtCorrections.cxx ConfigEtMonteCarlo.C ConfigEtReconstructed.C physicsSelections.root corrections.root");
55   plugin->SetExecutableCommand("aliroot -b -q");
56   // add extra include files/path
57   plugin->AddIncludePath("-I. -I$ALICE_ROOT/EMCAL -I$ALICE_ROOT/ANALYSIS");
58
59   // No need for output file names. Procedure is automatic. <-- not true
60   plugin->SetDefaultOutputs(kFALSE);
61   plugin->SetOutputFiles(outputName.Data());
62   // No need define the files to be archived. Note that this is handled automatically by the plugin.
63   //   plugin->SetOutputArchive("log_archive.zip:stdout,stderr");
64   // Set a name for the generated analysis macro (default MyAnalysis.C) Make this unique !
65   plugin->SetAnalysisMacro("DavidEtAnalysis.C");
66   // Optionally set maximum number of input files/subjob (default 100, put 0 to ignore). The optimum for an analysis
67   // is correlated with the run time - count few hours TTL per job, not minutes !
68   plugin->SetSplitMaxInputFileNumber(100);
69   // Optionally set number of failed jobs that will trigger killing waiting sub-jobs.
70   plugin->SetMaxInitFailed(5);
71   // Optionally resubmit threshold.
72   plugin->SetMasterResubmitThreshold(90);
73   // Optionally set time to live (default 30000 sec)
74   plugin->SetTTL(20000);
75   // Optionally set input format (default xml-single)
76   plugin->SetInputFormat("xml-single");
77   // Optionally modify the name of the generated JDL (default analysis.jdl)
78   plugin->SetJDLName("TaskEt.jdl");
79   // Optionally modify job price (default 1)
80   plugin->SetPrice(1); 
81   // Optionally modify split mode (default 'se')    
82   plugin->SetSplitMode("se");
83
84   return plugin;
85