11 |
|
#include "FWCore/Framework/interface/MakerMacros.h" |
12 |
|
#include "FWCore/Framework/interface/EDAnalyzer.h" |
13 |
|
#include "FWCore/Framework/interface/Event.h" |
14 |
+ |
#include "DataFormats/Provenance/interface/EventID.h" |
15 |
|
#include "FWCore/Framework/interface/EventSetup.h" |
16 |
|
#include "FWCore/Framework/interface/ESHandle.h" |
17 |
|
#include "FWCore/Utilities/interface/EDMException.h" |
18 |
|
#include "FWCore/ParameterSet/interface/ParameterSet.h" |
19 |
+ |
#include "FWCore/ParameterSet/interface/FileInPath.h" |
20 |
+ |
|
21 |
|
|
22 |
|
#include "DataFormats/Common/interface/Ref.h" |
23 |
|
#include "DataFormats/DetId/interface/DetId.h" |
59 |
|
|
60 |
|
#include "DataFormats/HepMCCandidate/interface/GenParticleCandidate.h" |
61 |
|
#include "SimDataFormats/HepMCProduct/interface/HepMCProduct.h" |
62 |
+ |
#include "PhysicsTools/HepMCCandAlgos/interface/CSA07ProcessId.h" |
63 |
+ |
|
64 |
+ |
#include "FWCore/Framework/interface/TriggerNames.h" |
65 |
+ |
#include "DataFormats/Common/interface/TriggerResults.h" |
66 |
|
|
67 |
+ |
#include "RecoEgamma/EgammaTools/interface/ConversionLikelihoodCalculator.h" |
68 |
|
|
69 |
|
#include "UserCode/Morgan/interface/MCAnalyzer.h" |
70 |
|
#include "UserCode/Morgan/interface/PhotonAnalyzer.h" |
73 |
|
#include "UserCode/Morgan/interface/ClusterAssociator.h" |
74 |
|
#include "UserCode/Morgan/interface/PhotonAssociator.h" |
75 |
|
#include "UserCode/Morgan/interface/PhotonIsolator.h" |
76 |
+ |
#include "UserCode/Morgan/interface/HLTAnalyzer.h" |
77 |
|
|
78 |
+ |
#include "UserCode/Morgan/interface/TRootRun.h" |
79 |
|
#include "UserCode/Morgan/interface/TRootEvent.h" |
80 |
|
#include "UserCode/Morgan/interface/TRootSignalEvent.h" |
81 |
|
#include "UserCode/Morgan/interface/TRootParticle.h" |
110 |
|
int verbosity; |
111 |
|
std::string rootFileName_ ; |
112 |
|
TFile* rootFile_ ; |
113 |
< |
TTree* rootTree_; |
113 |
> |
TTree* eventTree_; |
114 |
> |
TTree* runTree_; |
115 |
> |
bool isCSA07Soup; |
116 |
> |
bool doHLT; |
117 |
|
bool doMC; |
118 |
|
bool doSignalMC; |
119 |
|
bool doTrack; |
124 |
|
bool doCluster; |
125 |
|
bool doPhotonIsolation; |
126 |
|
bool doPhotonConversion; |
127 |
+ |
bool doPhotonConversionMC; |
128 |
+ |
|
129 |
+ |
ConversionLikelihoodCalculator* conversionLikelihoodCalculator_; |
130 |
|
|
131 |
|
MCAnalyzer* myMCAnalyzer; |
132 |
|
PhotonAnalyzer* myPhotonAnalyzer; |
134 |
|
SuperClusterAnalyzer* mySClusterAnalyzer; |
135 |
|
|
136 |
|
int nTotEvt_; |
137 |
+ |
HLTAnalyzer* hltAnalyzer_; |
138 |
+ |
TRootRun* runInfos_; |
139 |
|
TRootEvent* rootEvent; |
140 |
|
TRootSignalEvent* rootMCSignalEvent; |
141 |
|
TClonesArray* mcParticles; |
142 |
+ |
TClonesArray* mcPhotons; |
143 |
|
TClonesArray* tracks; |
144 |
|
TClonesArray* jets; |
145 |
|
TClonesArray* muons; |
149 |
|
TClonesArray* clusters; |
150 |
|
TClonesArray* superClusters; |
151 |
|
TClonesArray* conversionTracks; |
152 |
+ |
|
153 |
|
}; |
154 |
|
|
155 |
|
#endif |