ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/richard/photonPhysicsValidation/makeAllPlots.C
Revision: 1.4
Committed: Thu Jan 24 17:26:09 2013 UTC (12 years, 3 months ago) by richard
Content type: text/plain
Branch: MAIN
Changes since 1.3: +17 -17 lines
Log Message:
updates for normalization

File Contents

# User Rev Content
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.2 const bool save = true;
10    
11 richard 1.4 const bool doPilot = true;
12 richard 1.3 const bool doMC = true;
13 richard 1.1 const bool doData = true;
14 richard 1.4 const TString dataForest = "/mnt/hadoop/cms/store/user/luck/pA2013_forests/PA2013_HiForest_Express_r210635_autoforest_v2.root";
15 richard 1.1
16 richard 1.4 make_comp_plots_photontree(save,
17     doPilot,
18     doMC,
19     doData,
20     dataForest);
21 richard 1.1
22     make_comp_plots_rechittree(save,
23     doPilot,
24     doMC,
25     doData,
26     dataForest,
27     "eb");
28    
29     make_comp_plots_rechittree(save,
30     doPilot,
31     doMC,
32     doData,
33     dataForest,
34     "ee");
35 richard 1.4 make_etaphi_photontree(save,
36     doPilot,
37     doMC,
38     doData,
39     dataForest);
40 richard 1.1
41 richard 1.4 make_sigmaetaeta(save,
42     doPilot,
43     doMC,
44     doData,
45     dataForest);
46 richard 1.1 }