57 |
|
#include "DataFormats/HepMCCandidate/interface/GenParticleCandidate.h" |
58 |
|
#include "SimDataFormats/HepMCProduct/interface/HepMCProduct.h" |
59 |
|
|
60 |
– |
|
60 |
|
#include "UserCode/Morgan/interface/MCAnalyzer.h" |
61 |
|
#include "UserCode/Morgan/interface/PhotonAnalyzer.h" |
62 |
|
#include "UserCode/Morgan/interface/ClusterAnalyzer.h" |
64 |
|
#include "UserCode/Morgan/interface/ClusterAssociator.h" |
65 |
|
#include "UserCode/Morgan/interface/PhotonAssociator.h" |
66 |
|
#include "UserCode/Morgan/interface/PhotonIsolator.h" |
67 |
+ |
#include "UserCode/Morgan/interface/HLTAnalyzer.h" |
68 |
|
|
69 |
+ |
#include "UserCode/Morgan/interface/TRootRun.h" |
70 |
|
#include "UserCode/Morgan/interface/TRootEvent.h" |
71 |
|
#include "UserCode/Morgan/interface/TRootSignalEvent.h" |
72 |
|
#include "UserCode/Morgan/interface/TRootParticle.h" |
101 |
|
int verbosity; |
102 |
|
std::string rootFileName_ ; |
103 |
|
TFile* rootFile_ ; |
104 |
< |
TTree* rootTree_; |
104 |
> |
TTree* eventTree_; |
105 |
> |
TTree* runTree_; |
106 |
> |
bool doHLT; |
107 |
|
bool doMC; |
108 |
|
bool doSignalMC; |
109 |
|
bool doTrack; |
121 |
|
SuperClusterAnalyzer* mySClusterAnalyzer; |
122 |
|
|
123 |
|
int nTotEvt_; |
124 |
+ |
HLTAnalyzer* hltAnalyzer_; |
125 |
+ |
TRootRun* runInfos_; |
126 |
|
TRootEvent* rootEvent; |
127 |
|
TRootSignalEvent* rootMCSignalEvent; |
128 |
|
TClonesArray* mcParticles; |
135 |
|
TClonesArray* clusters; |
136 |
|
TClonesArray* superClusters; |
137 |
|
TClonesArray* conversionTracks; |
138 |
+ |
|
139 |
|
}; |
140 |
|
|
141 |
|
#endif |