]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/FORWARD/analysis/scripts/runFMDbackground.C
Major refactoring of the code.
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis / scripts / runFMDbackground.C
CommitLineData
2a9e98ee 1void runFMDbackground() {
2
3 // Mandatory fields for the background correction
4 TString runMode = "full";
5 TString anaSource = "";
2a9e98ee 6 TString anaType = "background";
243bd029 7 TString dataDir = "/alice/sim/LHC10f6/126437";
8 TString anaName = "Correction";
9 TString colSys = "p-p";
10 Float_t cmsNNGeV = 900;
11 Float_t bkG = 5;
2a9e98ee 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,
2a9e98ee 35 anaName,
36 colSys,
37 cmsNNGeV,
38 bkG);
39}
40
41
243bd029 42//
43// EOF
44//