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" |
85 |
|
bool isCSA07Soup; |
86 |
|
bool doHLT; |
87 |
|
bool doMC; |
88 |
< |
bool doSignalMC; |
88 |
> |
bool doJetMC; |
89 |
> |
bool doMETMC; |
90 |
> |
bool doPDFInfo; |
91 |
> |
bool doSignalMuMuGamma; |
92 |
> |
bool doSignalTopTop; |
93 |
> |
bool doPhotonConversionMC; |
94 |
> |
bool drawMCTree; |
95 |
> |
bool doBeamSpot; |
96 |
> |
bool doPrimaryVertex; |
97 |
|
bool doTrack; |
98 |
|
bool doJet; |
99 |
|
bool doMuon; |
87 |
– |
bool doPhoton; |
100 |
|
bool doElectron; |
101 |
+ |
bool doPhoton; |
102 |
|
bool doCluster; |
90 |
– |
bool doMET; |
91 |
– |
bool doPhotonIsolation; |
103 |
|
bool doPhotonConversion; |
104 |
< |
bool doPhotonConversionMC; |
105 |
< |
bool drawMCTree; |
104 |
> |
bool doPhotonIsolation; |
105 |
> |
bool doMET; |
106 |
|
|
107 |
|
ConversionLikelihoodCalculator* conversionLikelihoodCalculator_; |
108 |
|
|
109 |
|
int nTotEvt_; |
99 |
– |
HLTAnalyzer* hltAnalyzer_; |
110 |
|
TRootRun* runInfos_; |
111 |
|
TRootEvent* rootEvent; |
112 |
< |
TRootSignalEvent* rootMCSignalEvent; |
112 |
> |
HLTAnalyzer* hltAnalyzer_; |
113 |
|
TClonesArray* mcParticles; |
114 |
+ |
TClonesArray* genJets; |
115 |
+ |
TClonesArray* genMETs; |
116 |
+ |
TRootSignalEvent* rootMuMuGammaEvent; |
117 |
+ |
TClonesArray* rootMCTopTop; |
118 |
|
TClonesArray* mcPhotons; |
119 |
+ |
TRootBeamSpot* rootBeamSpot; |
120 |
+ |
TClonesArray* vertices; |
121 |
|
TClonesArray* tracks; |
122 |
|
TClonesArray* jets; |
123 |
|
TClonesArray* muons; |
127 |
|
TClonesArray* superClusters; |
128 |
|
TClonesArray* conversionTracks; |
129 |
|
TClonesArray* met; |
130 |
< |
|
130 |
> |
|
131 |
|
}; |
132 |
|
|
133 |
|
#endif |