ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/richard/photonPhysicsValidation/makeAllPlots.C
Revision: 1.8
Committed: Sun Mar 10 15:11:39 2013 UTC (12 years, 2 months ago) by richard
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +18 -12 lines
Error occurred while calculating annotation data.
Log Message:
last update from CERN

File Contents

# Content
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
6
7 void makeAllPlots()
8 {
9 const bool save = true;
10
11 const bool doPilot = false;
12 const bool doMC = false;
13 const bool doData = true;
14
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 //const TString pilotForest = "root://eoscms//eos/cms/store/group/phys_heavyions/velicanu/forest/PA2013_HiForest_Express_r211256_autoforest_v63.root";
23
24 const TString dataForest = "root://eoscms//eos/cms/store/group/phys_heavyions/velicanu/forest/PA2013_HiForest_Express_r211765_autoforest_v63.root";
25 //const TString dataForest = "root://eoscms//eos/cms/store/group/phys_heavyions/kjung/MinBiasUPCForest_v71/hiForest_MinBiasUPC_v71_Merged1.root";
26 //const TString dataForest = "root://eoscms//eos/cms/store/group/phys_heavyions/kjung/MinBiasUPCForest_v71/*.root";
27
28 //const TString mcForest = "root://eoscms//eos/cms/store/group/phys_heavyions/azsigmon/HiForest_pPb_Hijing_NEWFIX_v2.root";
29 //const TString mcForest = "root://eoscms//eos/cms/store/caf/user/dgulhan/pPb_Hijing_MB01/prod09/HiForest_v55_merged02/merged_forest_0.root";
30 const TString mcForest = "root://eoscms//eos/cms/store/group/phys_heavyions/dgulhan/pPb_Hijing_MB02/prod12/HiForest_v68_merged01/H02_merged_hiforest_v68_prod12.root";
31
32 make_comp_plots_photontree(save,
33 doPilot,
34 doMC,
35 doData,
36 pilotForest,
37 dataForest,
38 mcForest);
39
40 make_etaphi_photontree(save,
41 doPilot,
42 doMC,
43 doData,
44 pilotForest,
45 dataForest,
46 mcForest);
47
48 make_sigmaetaeta(save,
49 doPilot,
50 doMC,
51 doData,
52 pilotForest,
53 dataForest,
54 mcForest);
55
56 // make_comp_plots_rechittree(save,
57 // doPilot,
58 // doMC,
59 // doData,
60 // pilotForest,
61 // dataForest,
62 // mcForest,
63 // "eb");
64
65 // make_comp_plots_rechittree(save,
66 // doPilot,
67 // doMC,
68 // doData,
69 // pilotForest,
70 // dataForest,
71 // mcForest,
72 // "ee");
73
74 }