ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/richard/photonPhysicsValidation/makeAllPlots.C
Revision: 1.1
Committed: Fri Jan 18 21:57:44 2013 UTC (12 years, 3 months ago) by richard
Content type: text/plain
Branch: MAIN
Log Message:
add photon validation scripts for pA 2013

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     #include "TString.h"
6    
7     void makeAllPlots()
8     {
9     const bool save = false;
10     const bool doPilot = true;
11     const bool doMC = false;
12     const bool doData = true;
13     const TString dataForest = "/mnt/hadoop/cms/store/user/luck/pA2013_forests/pPb_hiForest2_r210354_notracker_v1.root";
14    
15     make_comp_plots_photontree(save,
16     doPilot,
17     doMC,
18     doData,
19     dataForest);
20    
21     make_comp_plots_rechittree(save,
22     doPilot,
23     doMC,
24     doData,
25     dataForest,
26     "eb");
27    
28     make_comp_plots_rechittree(save,
29     doPilot,
30     doMC,
31     doData,
32     dataForest,
33     "ee");
34     make_etaphi_photontree(save,
35     doPilot,
36     doMC,
37     doData,
38     dataForest);
39    
40     make_sigmaetaeta(save,
41     doPilot,
42     doMC,
43     doData,
44     dataForest);
45     }