50 |
|
#include "DataFormats/BTauReco/interface/IsolatedTauTagInfo.h" |
51 |
|
|
52 |
|
#include "DataFormats/TrackReco/interface/Track.h" |
53 |
+ |
#include "DataFormats/TrackReco/interface/HitPattern.h" |
54 |
|
|
55 |
|
#include "DataFormats/VertexReco/interface/Vertex.h" |
56 |
|
|
57 |
|
#include "DataFormats/HepMCCandidate/interface/GenParticleCandidate.h" |
58 |
|
#include "SimDataFormats/HepMCProduct/interface/HepMCProduct.h" |
59 |
< |
|
59 |
> |
#include "PhysicsTools/HepMCCandAlgos/interface/CSA07ProcessId.h" |
60 |
|
|
61 |
|
#include "UserCode/Morgan/interface/MCAnalyzer.h" |
62 |
|
#include "UserCode/Morgan/interface/PhotonAnalyzer.h" |
65 |
|
#include "UserCode/Morgan/interface/ClusterAssociator.h" |
66 |
|
#include "UserCode/Morgan/interface/PhotonAssociator.h" |
67 |
|
#include "UserCode/Morgan/interface/PhotonIsolator.h" |
68 |
+ |
#include "UserCode/Morgan/interface/HLTAnalyzer.h" |
69 |
|
|
70 |
+ |
#include "UserCode/Morgan/interface/TRootRun.h" |
71 |
|
#include "UserCode/Morgan/interface/TRootEvent.h" |
72 |
|
#include "UserCode/Morgan/interface/TRootSignalEvent.h" |
73 |
|
#include "UserCode/Morgan/interface/TRootParticle.h" |
102 |
|
int verbosity; |
103 |
|
std::string rootFileName_ ; |
104 |
|
TFile* rootFile_ ; |
105 |
< |
TTree* rootTree_; |
105 |
> |
TTree* eventTree_; |
106 |
> |
TTree* runTree_; |
107 |
> |
bool isCSA07Soup; |
108 |
> |
bool doHLT; |
109 |
|
bool doMC; |
110 |
|
bool doSignalMC; |
111 |
|
bool doTrack; |
114 |
|
bool doPhoton; |
115 |
|
bool doElectron; |
116 |
|
bool doCluster; |
117 |
+ |
bool doPhotonIsolation; |
118 |
+ |
bool doPhotonConversion; |
119 |
|
|
120 |
|
MCAnalyzer* myMCAnalyzer; |
121 |
|
PhotonAnalyzer* myPhotonAnalyzer; |
123 |
|
SuperClusterAnalyzer* mySClusterAnalyzer; |
124 |
|
|
125 |
|
int nTotEvt_; |
126 |
+ |
HLTAnalyzer* hltAnalyzer_; |
127 |
+ |
TRootRun* runInfos_; |
128 |
|
TRootEvent* rootEvent; |
129 |
|
TRootSignalEvent* rootMCSignalEvent; |
130 |
|
TClonesArray* mcParticles; |
136 |
|
TClonesArray* correctedPhotons; |
137 |
|
TClonesArray* clusters; |
138 |
|
TClonesArray* superClusters; |
139 |
+ |
TClonesArray* conversionTracks; |
140 |
+ |
|
141 |
|
}; |
142 |
|
|
143 |
|
#endif |