]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/FORWARD/analysis/scripts/runFMDsharing.C
Transition PWG2/FORWARD -> PWGLF
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis / scripts / runFMDsharing.C
1 void runFMDsharing() 
2 {
3   // Mandatory fields for the collector analysis
4   TString runMode   = "full";
5   TString anaSource = "";
6   TString anaType   = "sharing";
7   TString dataDir   = "/alice/sim/LHC10e13/";
8   TString anaName   = "FMDCollector900GeVPythia";
9   TString colSys    = "p-p";
10   Float_t cmsNNGeV  = 900;
11   Float_t bkG       = 5;
12
13   
14   /** 
15    * Run an FMD corrections job. 
16    * 
17    * @param runMode     Running mode (full, test, terminate, submit, offline)
18    * @param anaType     What to do (background, collector, sharing)
19    * @param dataDir     Input data directory 
20    * @param anaSource   Analysis source (if any)
21    * @param addLibs     Libraries to add 
22    * @param anaName     Analysis name 
23    * @param colSys      Collision system (p-p, Pb-Pb, A-A)
24    * @param cmsNNGeV    Center of mass energy per nucleon in GeV
25    * @param bkG         Magnetic field in kilo gaus 
26    * @param aliceTag    AliROOT tag to use 
27    * @param rootTag     ROOT tag to use 
28    * @param apiTag      API tag to use 
29    */
30   gROOT->LoadMacro("runFMDjob.C");
31   runFMDjob(runMode, 
32             anaType, 
33             dataDir, 
34             anaSource, 
35             anaName, 
36             colSys, 
37             cmsNNGeV, 
38             bkG);
39 }
40 //
41 // EOF
42 //