86 |
|
virtual void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&); |
87 |
|
virtual void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&); |
88 |
|
void StoreJetConstituents(pat::Jet* pat_jet, Jet* topjet); |
89 |
+ |
void StorePFCandsInCone(Particle* part, const std::vector<reco::PFCandidate>& pf_cands, double R0); |
90 |
|
|
91 |
|
// ----------member data --------------------------- |
92 |
|
TFile *outfile; |
109 |
|
bool doPV; |
110 |
|
bool doTrigger; |
111 |
|
bool doTagInfos; |
112 |
+ |
bool storePFsAroundLeptons; |
113 |
|
|
114 |
|
int run; |
115 |
|
int luminosityBlock; |
172 |
|
float beamspot_y0; |
173 |
|
float beamspot_z0; |
174 |
|
|
175 |
+ |
std::string pf_around_leptons_source; |
176 |
+ |
|
177 |
|
edm::InputTag genparticle_source; |
178 |
|
GenInfo genInfo; |
179 |
|
std::vector<GenParticle> genps; |
189 |
|
bool newrun; |
190 |
|
bool previouslumiblockwasfilled; |
191 |
|
|
188 |
– |
std::vector<const reco::PFCandidate*> m_stored_pfs; |
192 |
|
}; |
193 |
|
|
194 |
|
|