26 |
|
|
27 |
|
#include "../interface/HLTAnalyzer.h" |
28 |
|
#include "../interface/MCAnalyzer.h" |
29 |
+ |
#include "../interface/MCAssociator.h" |
30 |
|
#include "../interface/VertexAnalyzer.h" |
31 |
|
#include "../interface/TrackAnalyzer.h" |
32 |
|
#include "../interface/JetAnalyzer.h" |
44 |
|
#include "../interface/TRootEvent.h" |
45 |
|
#include "../interface/TRootSignalEvent.h" |
46 |
|
#include "../interface/TRootParticle.h" |
47 |
+ |
#include "../interface/TRootMCParticle.h" |
48 |
+ |
#include "../interface/TRootBeamSpot.h" |
49 |
+ |
#include "../interface/TRootVertex.h" |
50 |
+ |
#include "../interface/TRootTrack.h" |
51 |
|
#include "../interface/TRootJet.h" |
52 |
|
#include "../interface/TRootMuon.h" |
53 |
|
#include "../interface/TRootElectron.h" |
83 |
|
TTree* runTree_; |
84 |
|
std::string dataType_ ; |
85 |
|
bool isCSA07Soup; |
86 |
+ |
double datasetXsection; |
87 |
+ |
std::string datasetDesciption; |
88 |
|
bool doHLT; |
89 |
|
bool doMC; |
90 |
+ |
bool doJetMC; |
91 |
+ |
bool doMETMC; |
92 |
|
bool doPDFInfo; |
93 |
|
bool doSignalMuMuGamma; |
94 |
|
bool doSignalTopTop; |
95 |
+ |
bool doPhotonConversionMC; |
96 |
+ |
bool drawMCTree; |
97 |
+ |
bool doBeamSpot; |
98 |
|
bool doPrimaryVertex; |
99 |
|
bool doTrack; |
100 |
|
bool doJet; |
101 |
|
bool doMuon; |
90 |
– |
bool doPhoton; |
102 |
|
bool doElectron; |
103 |
+ |
bool doPhoton; |
104 |
|
bool doCluster; |
93 |
– |
bool doMET; |
94 |
– |
bool doPhotonIsolation; |
105 |
|
bool doPhotonConversion; |
106 |
< |
bool doPhotonConversionMC; |
107 |
< |
bool drawMCTree; |
106 |
> |
bool doPhotonIsolation; |
107 |
> |
bool doMET; |
108 |
|
|
109 |
|
ConversionLikelihoodCalculator* conversionLikelihoodCalculator_; |
110 |
|
|
111 |
|
int nTotEvt_; |
102 |
– |
HLTAnalyzer* hltAnalyzer_; |
112 |
|
TRootRun* runInfos_; |
113 |
|
TRootEvent* rootEvent; |
114 |
< |
TRootSignalEvent* rootMuMuGammaEvent; |
114 |
> |
HLTAnalyzer* hltAnalyzer_; |
115 |
|
TClonesArray* mcParticles; |
116 |
+ |
TClonesArray* genJets; |
117 |
+ |
TClonesArray* genMETs; |
118 |
+ |
TRootSignalEvent* rootMuMuGammaEvent; |
119 |
+ |
TClonesArray* rootMCTopTop; |
120 |
|
TClonesArray* mcPhotons; |
121 |
+ |
TRootBeamSpot* rootBeamSpot; |
122 |
+ |
TClonesArray* vertices; |
123 |
|
TClonesArray* tracks; |
124 |
|
TClonesArray* jets; |
125 |
|
TClonesArray* muons; |
129 |
|
TClonesArray* superClusters; |
130 |
|
TClonesArray* conversionTracks; |
131 |
|
TClonesArray* met; |
117 |
– |
TClonesArray* rootMCTopTop; |
132 |
|
|
133 |
|
}; |
134 |
|
|