1 |
richard |
1.1 |
#include "make_comp_plots_photontree.C"
|
2 |
|
|
#include "make_comp_plots_rechittree.C"
|
3 |
|
|
#include "make_etaphi_photontree.C"
|
4 |
|
|
#include "make_sigmaetaeta.C"
|
5 |
richard |
1.2 |
|
6 |
richard |
1.1 |
|
7 |
|
|
void makeAllPlots()
|
8 |
|
|
{
|
9 |
richard |
1.7 |
const bool save = false;
|
10 |
richard |
1.2 |
|
11 |
richard |
1.6 |
const bool doPilot = true;
|
12 |
|
|
const bool doMC = true;
|
13 |
richard |
1.1 |
const bool doData = true;
|
14 |
richard |
1.5 |
|
15 |
|
|
//MIT files
|
16 |
|
|
// const TString pilotForest = "/mnt/hadoop/cms/store/user/luck/pA2013_pilot/PA2013_HiForest_Express_r0_pilot_minbias_v0.root";
|
17 |
|
|
// const TString dataForest = "/mnt/hadoop/cms/store/user/luck/pA2013_forests/PA2013_HiForest_Express_r210635_autoforest_v2.root";
|
18 |
|
|
// const TString mcForest = "/mnt/hadoop/cms/store/user/luck/pA2013_MC/HiForest_pPb_Hijing_NEWFIX_v2.root";
|
19 |
|
|
|
20 |
|
|
//CERN files
|
21 |
|
|
const TString pilotForest = "root://eoscms//eos/cms/store/group/phys_heavyions/velicanu/forest/PA2013_HiForest_Express_r0_pilot_minbias_v0.root";
|
22 |
richard |
1.7 |
const TString dataForest = "root://eoscms//eos/cms/store/group/phys_heavyions/velicanu/forest/PA2013_HiForest_Express_r211256_autoforest_v63.root";
|
23 |
|
|
//const TString mcForest = "root://eoscms//eos/cms/store/group/phys_heavyions/azsigmon/HiForest_pPb_Hijing_NEWFIX_v2.root";
|
24 |
|
|
const TString mcForest = "root://eoscms//eos/cms/store/caf/user/dgulhan/pPb_Hijing_MB01/prod09/HiForest_v55_merged02/merged_forest_0.root";
|
25 |
richard |
1.1 |
|
26 |
richard |
1.4 |
make_comp_plots_photontree(save,
|
27 |
richard |
1.7 |
doPilot,
|
28 |
|
|
doMC,
|
29 |
|
|
doData,
|
30 |
richard |
1.5 |
pilotForest,
|
31 |
richard |
1.7 |
dataForest,
|
32 |
richard |
1.5 |
mcForest);
|
33 |
richard |
1.7 |
|
34 |
richard |
1.4 |
make_etaphi_photontree(save,
|
35 |
|
|
doPilot,
|
36 |
|
|
doMC,
|
37 |
|
|
doData,
|
38 |
richard |
1.5 |
pilotForest,
|
39 |
|
|
dataForest,
|
40 |
|
|
mcForest);
|
41 |
richard |
1.1 |
|
42 |
richard |
1.4 |
make_sigmaetaeta(save,
|
43 |
|
|
doPilot,
|
44 |
|
|
doMC,
|
45 |
|
|
doData,
|
46 |
richard |
1.5 |
pilotForest,
|
47 |
|
|
dataForest,
|
48 |
|
|
mcForest);
|
49 |
richard |
1.7 |
|
50 |
|
|
// make_comp_plots_rechittree(save,
|
51 |
|
|
// doPilot,
|
52 |
|
|
// doMC,
|
53 |
|
|
// doData,
|
54 |
|
|
// pilotForest,
|
55 |
|
|
// dataForest,
|
56 |
|
|
// mcForest,
|
57 |
|
|
// "eb");
|
58 |
|
|
|
59 |
|
|
// make_comp_plots_rechittree(save,
|
60 |
|
|
// doPilot,
|
61 |
|
|
// doMC,
|
62 |
|
|
// doData,
|
63 |
|
|
// pilotForest,
|
64 |
|
|
// dataForest,
|
65 |
|
|
// mcForest,
|
66 |
|
|
// "ee");
|
67 |
|
|
|
68 |
richard |
1.1 |
}
|