CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Types | Private Member Functions | Private Attributes
pat::PATGenCandsFromSimTracksProducer Class Reference

Produces reco::GenParticle from SimTracks. More...

Inheritance diagram for pat::PATGenCandsFromSimTracksProducer:
edm::stream::EDProducer<>

Classes

struct  GlobalContext
 Global context for all recursive methods. More...
 
struct  LessById
 

Public Member Functions

 PATGenCandsFromSimTracksProducer (const edm::ParameterSet &)
 
 ~PATGenCandsFromSimTracksProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Types

typedef StringCutObjectSelector< reco::GenParticleStrFilter
 

Private Member Functions

const SimTrackfindGeantMother (const SimTrack &tk, const GlobalContext &g) const
 Find the mother of a given GEANT track (or NULL if it can't be found). More...
 
edm::Ref< reco::GenParticleCollectionfindRef (const SimTrack &tk, GlobalContext &g) const
 
edm::Ref< reco::GenParticleCollectiongeneratorRef_ (const SimTrack &tk, const GlobalContext &g) const
 Used by findRef if the track is a PYTHIA particle. More...
 
reco::GenParticle makeGenParticle_ (const SimTrack &tk, const edm::Ref< reco::GenParticleCollection > &mother, const GlobalContext &g) const
 Make a GenParticle for this SimTrack, with a given mother. More...
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

const StrFilter filter_
 
bool firstEvent_
 
edm::EDGetTokenT< std::vector< int > > genBarcodesToken_
 
edm::EDGetTokenT< reco::GenParticleCollectiongenParticlesToken_
 Collection of GenParticles I need to make refs to. It must also have its associated vector<int> of barcodes, aligned with them. More...
 
bool makeMotherLink_
 If true, I'll try to make a link from the GEANT particle to a GenParticle. More...
 
std::set< int > motherPdgIds_
 
std::vector< PdtEntrymotherPdts_
 
std::set< int > pdgIds_
 
std::vector< PdtEntrypdts_
 
int setStatus_
 
edm::EDGetTokenT< edm::SimTrackContainersimTracksToken_
 
edm::EDGetTokenT< edm::SimVertexContainersimVertexToken_
 
bool writeAncestors_
 If true, I'll save GenParticles corresponding to the ancestors of this GEANT particle. Common ancestors are only written once. More...
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Produces reco::GenParticle from SimTracks.

The PATGenCandsFromSimTracksProducer produces GenParticles from SimTracks, so they can be used for MC matching.

Author
Jordan Tucker (original module), Giovanni Petrucciani (PAT integration)
Version
Id
PATGenCandsFromSimTracksProducer.cc,v 1.8 2010/10/20 23:09:25 wmtan Exp

Definition at line 29 of file PATGenCandsFromSimTracksProducer.cc.

Member Typedef Documentation

Definition at line 46 of file PATGenCandsFromSimTracksProducer.cc.

Constructor & Destructor Documentation

PATGenCandsFromSimTracksProducer::PATGenCandsFromSimTracksProducer ( const edm::ParameterSet cfg)
explicit

Definition at line 116 of file PATGenCandsFromSimTracksProducer.cc.

References edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), makeMotherLink_, motherPdts_, pdts_, and writeAncestors_.

116  :
117  firstEvent_(true),
118  simTracksToken_(consumes<SimTrackContainer>(cfg.getParameter<InputTag>("src"))), // source sim tracks
119  simVertexToken_(consumes<SimVertexContainer>(cfg.getParameter<InputTag>("src"))), // source sim vertices
120  setStatus_(cfg.getParameter<int32_t>("setStatus")), // set status of GenParticle to this code
121  filter_( cfg.existsAs<string>("filter") ? cfg.getParameter<string>("filter") : std::string("1 == 1") ),
122  makeMotherLink_(cfg.existsAs<bool>("makeMotherLink") ? cfg.getParameter<bool>("makeMotherLink") : false),
123  writeAncestors_(cfg.existsAs<bool>("writeAncestors") ? cfg.getParameter<bool>("writeAncestors") : false),
124  genParticlesToken_(mayConsume<GenParticleCollection>(cfg.getParameter<InputTag>("genParticles"))),
125  genBarcodesToken_(mayConsume<std::vector<int> >(cfg.getParameter<InputTag>("genParticles")))
126 {
127  // Possibly allow a list of particle types
128  if (cfg.exists("particleTypes")) {
129  pdts_ = cfg.getParameter<vector<PdtEntry> >("particleTypes");
130  }
131  if (cfg.exists("motherTypes")) {
132  motherPdts_ = cfg.getParameter<vector<PdtEntry> >("motherTypes");
133  }
134 
136  edm::LogWarning("Configuration") << "PATGenCandsFromSimTracksProducer: " <<
137  "you have set 'writeAncestors' to 'true' and 'makeMotherLink' to false;" <<
138  "GEANT particles with generator level (e.g.PYHIA) mothers won't have mother links.\n";
139  }
140  produces<GenParticleCollection>();
141 }
T getParameter(std::string const &) const
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:161
edm::EDGetTokenT< reco::GenParticleCollection > genParticlesToken_
Collection of GenParticles I need to make refs to. It must also have its associated vector<int> of ba...
edm::EDGetTokenT< std::vector< int > > genBarcodesToken_
bool exists(std::string const &parameterName) const
checks if a parameter exists
bool writeAncestors_
If true, I&#39;ll save GenParticles corresponding to the ancestors of this GEANT particle. Common ancestors are only written once.
bool makeMotherLink_
If true, I&#39;ll try to make a link from the GEANT particle to a GenParticle.
edm::EDGetTokenT< edm::SimVertexContainer > simVertexToken_
edm::EDGetTokenT< edm::SimTrackContainer > simTracksToken_
pat::PATGenCandsFromSimTracksProducer::~PATGenCandsFromSimTracksProducer ( )
inlineoverride

Definition at line 32 of file PATGenCandsFromSimTracksProducer.cc.

References produce().

32 {}

Member Function Documentation

const SimTrack * PATGenCandsFromSimTracksProducer::findGeantMother ( const SimTrack tk,
const GlobalContext g 
) const
private

Find the mother of a given GEANT track (or NULL if it can't be found).

Definition at line 144 of file PATGenCandsFromSimTracksProducer.cc.

References SimTrack::genpartIndex(), training_settings::idx, pfDeepBoostedJetPreprocessParams_cfi::lower_bound, SimVertex::noParent(), SimTrack::noVertex(), SimVertex::parentIndex(), pat::PATGenCandsFromSimTracksProducer::GlobalContext::simtks, pat::PATGenCandsFromSimTracksProducer::GlobalContext::simvtxs, SimTrack::vertIndex(), and extraflags_cff::vtx.

Referenced by findRef(), and produce().

144  {
145  assert(tk.genpartIndex() == -1); // MUST NOT be called with a PYTHIA track
146  if (!tk.noVertex()) {
147  const SimVertex &vtx = g.simvtxs[tk.vertIndex()];
148  if (!vtx.noParent()) {
149  unsigned int idx = vtx.parentIndex();
150  SimTrackContainer::const_iterator it = std::lower_bound(g.simtks.begin(), g.simtks.end(), idx, LessById());
151  if ((it != g.simtks.end()) && (it->trackId() == idx)) {
152  return &*it;
153  }
154  }
155  }
156  return nullptr;
157 }
int parentIndex() const
Definition: SimVertex.h:29
int genpartIndex() const
index of the corresponding Generator particle in the Event container (-1 if no Genpart) ...
Definition: SimTrack.h:34
bool noVertex() const
Definition: SimTrack.h:31
int vertIndex() const
index of the vertex in the Event container (-1 if no vertex)
Definition: SimTrack.h:30
bool noParent() const
Definition: SimVertex.h:30
edm::Ref< reco::GenParticleCollection > PATGenCandsFromSimTracksProducer::findRef ( const SimTrack tk,
GlobalContext g 
) const
private

Find the GenParticle reference for a given GEANT or PYTHIA track.

  • if the track corresponds to a PYTHIA particle, return a ref to that particle
  • otherwise, if this simtrack has no mother simtrack, return a null ref
  • otherwise, if writeAncestors is true, make a GenParticle for it and return a ref to it
  • otherwise, if writeAncestors is false, return the ref to the GEANT mother of this track

Definition at line 160 of file PATGenCandsFromSimTracksProducer.cc.

References findGeantMother(), generatorRef_(), SimTrack::genpartIndex(), makeGenParticle_(), makeMotherLink_, pat::PATGenCandsFromSimTracksProducer::GlobalContext::output, AlCaHLTBitMon_ParallelJobs::p, pat::PATGenCandsFromSimTracksProducer::GlobalContext::refprod, pat::PATGenCandsFromSimTracksProducer::GlobalContext::simTksProcessed, CoreSimTrack::trackId(), and writeAncestors_.

Referenced by produce().

160  {
162  const SimTrack * simMother = findGeantMother(tk, g);
163 
165  if (simMother != nullptr) motherRef = findRef(*simMother,g);
166 
167  if (writeAncestors_) {
168  // If writing ancestors, I need to serialize myself, and then to return a ref to me
169  // But first check if I've already been serialized
170  std::map<unsigned int,int>::const_iterator it = g.simTksProcessed.find(tk.trackId());
171  if (it != g.simTksProcessed.end()) {
172  // just return a ref to it
173  assert(it->second > 0);
174  return edm::Ref<reco::GenParticleCollection>(g.refprod, (it->second) - 1);
175  } else {
176  // make genParticle, save, update the map, and return ref to myself
177  reco::GenParticle p = makeGenParticle_(tk, motherRef, g);
178  g.output.push_back(p);
179  g.simTksProcessed[tk.trackId()] = g.output.size();
180  return edm::Ref<reco::GenParticleCollection>(g.refprod, g.output.size()-1 );
181  }
182  } else {
183  // Otherwise, I just return a ref to my mum
184  return motherRef;
185  }
186 }
const SimTrack * findGeantMother(const SimTrack &tk, const GlobalContext &g) const
Find the mother of a given GEANT track (or NULL if it can&#39;t be found).
edm::Ref< reco::GenParticleCollection > findRef(const SimTrack &tk, GlobalContext &g) const
bool writeAncestors_
If true, I&#39;ll save GenParticles corresponding to the ancestors of this GEANT particle. Common ancestors are only written once.
int genpartIndex() const
index of the corresponding Generator particle in the Event container (-1 if no Genpart) ...
Definition: SimTrack.h:34
bool makeMotherLink_
If true, I&#39;ll try to make a link from the GEANT particle to a GenParticle.
reco::GenParticle makeGenParticle_(const SimTrack &tk, const edm::Ref< reco::GenParticleCollection > &mother, const GlobalContext &g) const
Make a GenParticle for this SimTrack, with a given mother.
unsigned int trackId() const
Definition: CoreSimTrack.h:31
edm::Ref< reco::GenParticleCollection > generatorRef_(const SimTrack &tk, const GlobalContext &g) const
Used by findRef if the track is a PYTHIA particle.
edm::Ref< reco::GenParticleCollection > PATGenCandsFromSimTracksProducer::generatorRef_ ( const SimTrack tk,
const GlobalContext g 
) const
private

Used by findRef if the track is a PYTHIA particle.

Definition at line 189 of file PATGenCandsFromSimTracksProducer.cc.

References pat::PATGenCandsFromSimTracksProducer::GlobalContext::barcodesAreSorted, spr::find(), pat::PATGenCandsFromSimTracksProducer::GlobalContext::genBarcodes, SimTrack::genpartIndex(), pat::PATGenCandsFromSimTracksProducer::GlobalContext::gens, and pfDeepBoostedJetPreprocessParams_cfi::lower_bound.

Referenced by findRef().

189  {
190  assert(st.genpartIndex() != -1);
191  // Note that st.genpartIndex() is the barcode, not the index within GenParticleCollection, so I have to search the particle
192  std::vector<int>::const_iterator it;
193  if (g.barcodesAreSorted) {
194  it = std::lower_bound(g.genBarcodes->begin(), g.genBarcodes->end(), st.genpartIndex());
195  } else {
196  it = std::find( g.genBarcodes->begin(), g.genBarcodes->end(), st.genpartIndex());
197  }
198 
199  // Check that I found something
200  // I need to check '*it == st.genpartIndex()' because lower_bound just finds the right spot for an item in a sorted list, not the item
201  if ((it != g.genBarcodes->end()) && (*it == st.genpartIndex())) {
202  return reco::GenParticleRef(g.gens, it - g.genBarcodes->begin());
203  } else {
204  return reco::GenParticleRef();
205  }
206 }
edm::Ref< GenParticleCollection > GenParticleRef
persistent reference to a GenParticle
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
reco::GenParticle PATGenCandsFromSimTracksProducer::makeGenParticle_ ( const SimTrack tk,
const edm::Ref< reco::GenParticleCollection > &  mother,
const GlobalContext g 
) const
private

Make a GenParticle for this SimTrack, with a given mother.

Definition at line 209 of file PATGenCandsFromSimTracksProducer.cc.

References CoreSimTrack::charge(), ALCARECOTkAlJpsiMuMu_cff::charge, runTauDisplay::gp, edm::Ref< C, T, F >::isNonnull(), CoreSimTrack::momentum(), SimTrack::noVertex(), p4, setStatus_, pat::PATGenCandsFromSimTracksProducer::GlobalContext::simvtxs, CoreSimTrack::type(), SimTrack::vertIndex(), and extraflags_cff::vtx.

Referenced by findRef(), and produce().

209  {
210  // Make up a GenParticleCandidate from the GEANT track info.
211  int charge = static_cast<int>(tk.charge());
212  const Particle::LorentzVector& p4 = tk.momentum();
213  Particle::Point vtx; // = (0,0,0) by default
214  if (!tk.noVertex()) vtx = g.simvtxs[tk.vertIndex()].position();
215  GenParticle gp(charge, p4, vtx, tk.type(), setStatus_, true);
216  if (mother.isNonnull()) gp.addMother(mother);
217  return gp;
218 }
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:251
float charge() const
charge
Definition: CoreSimTrack.cc:17
double p4[4]
Definition: TauolaWrapper.h:92
bool noVertex() const
Definition: SimTrack.h:31
int vertIndex() const
index of the vertex in the Event container (-1 if no vertex)
Definition: SimTrack.h:30
int type() const
particle type (HEP PDT convension)
Definition: CoreSimTrack.h:22
const math::XYZTLorentzVectorD & momentum() const
Definition: CoreSimTrack.h:19
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: LeafCandidate.h:23
math::XYZPoint Point
point in the space
Definition: LeafCandidate.h:27
void PATGenCandsFromSimTracksProducer::produce ( edm::Event event,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 221 of file PATGenCandsFromSimTracksProducer.cc.

References funct::abs(), reco::CompositeRefCandidateT< D >::addMother(), egammaForCoreTracking_cff::cands, gather_cfg::cout, DEFINE_FWK_MODULE, egammaForCoreTracking_cff::depth, Exception, filter_, findGeantMother(), findRef(), firstEvent_, genBarcodesToken_, genParticlesToken_, mps_fire::i, edm::OrphanHandleBase::id(), edm::Ref< C, T, F >::id(), edm::Ref< C, T, F >::isNonnull(), edm::Ref< C, T, F >::key(), makeGenParticle_(), makeMotherLink_, motherPdgIds_, motherPdts_, eostools::move(), pdgIds_, pdts_, simTracksToken_, simVertexToken_, jetUpdater_cfi::sort, CoreSimTrack::type(), and writeAncestors_.

Referenced by ~PATGenCandsFromSimTracksProducer().

222  {
223 
224  if (firstEvent_){
225  if (!pdts_.empty()) {
226  pdgIds_.clear();
227  for (vector<PdtEntry>::iterator itp = pdts_.begin(), edp = pdts_.end(); itp != edp; ++itp) {
228  itp->setup(iSetup); // decode string->pdgId and vice-versa
229  pdgIds_.insert(std::abs(itp->pdgId()));
230  }
231  pdts_.clear();
232  }
233  if (!motherPdts_.empty()) {
234  motherPdgIds_.clear();
235  for (vector<PdtEntry>::iterator itp = motherPdts_.begin(), edp = motherPdts_.end(); itp != edp; ++itp) {
236  itp->setup(iSetup); // decode string->pdgId and vice-versa
237  motherPdgIds_.insert(std::abs(itp->pdgId()));
238  }
239  motherPdts_.clear();
240  }
241  firstEvent_ = false;
242  }
243 
244  // Simulated tracks (i.e. GEANT particles).
245  Handle<SimTrackContainer> simtracks;
246  event.getByToken(simTracksToken_, simtracks);
247 
248  // Need to check that SimTrackContainer is sorted; otherwise, copy and sort :-(
249  std::unique_ptr<SimTrackContainer> simtracksTmp;
250  const SimTrackContainer * simtracksSorted = &* simtracks;
252  if (!__gnu_cxx::is_sorted(simtracks->begin(), simtracks->end(), LessById())) {
253  simtracksTmp.reset(new SimTrackContainer(*simtracks));
254  std::sort(simtracksTmp->begin(), simtracksTmp->end(), LessById());
255  simtracksSorted = &* simtracksTmp;
256  }
257  }
258 
259  // Get the associated vertices
260  Handle<SimVertexContainer> simvertices;
261  event.getByToken(simVertexToken_, simvertices);
262 
263  // Get the GenParticles and barcodes, if needed to set mother links
265  Handle<std::vector<int> > genBarcodes;
266  bool barcodesAreSorted = true;
267  if (makeMotherLink_) {
268  event.getByToken(genParticlesToken_, gens);
269  event.getByToken(genBarcodesToken_, genBarcodes);
270  if (gens->size() != genBarcodes->size()) throw cms::Exception("Corrupt data") << "Barcodes not of the same size as GenParticles!\n";
271  barcodesAreSorted = __gnu_cxx::is_sorted(genBarcodes->begin(), genBarcodes->end());
272  }
273 
274 
275  // make the output collection
276  auto cands = std::make_unique<GenParticleCollection>();
277  edm::RefProd<GenParticleCollection> refprod = event.getRefBeforePut<GenParticleCollection>();
278 
279  GlobalContext globals(*simtracksSorted, *simvertices, gens, genBarcodes, barcodesAreSorted, *cands, refprod);
280 
281  for (SimTrackContainer::const_iterator isimtrk = simtracks->begin();
282  isimtrk != simtracks->end(); ++isimtrk) {
283 
284  // Skip PYTHIA tracks.
285  if (isimtrk->genpartIndex() != -1) continue;
286 
287  // Maybe apply the PdgId filter
288  if (!pdgIds_.empty()) { // if we have a filter on pdg ids
289  if (pdgIds_.find(std::abs(isimtrk->type())) == pdgIds_.end()) continue;
290  }
291 
292  GenParticle genp = makeGenParticle_(*isimtrk, Ref<GenParticleCollection>(), globals);
293 
294  // Maybe apply filter on the particle
295  if (!(filter_(genp))) continue;
296 
297 
298  if (!motherPdgIds_.empty()) {
299  const SimTrack *motherSimTk = findGeantMother(*isimtrk, globals);
300  if (motherSimTk == nullptr) continue;
301  if (motherPdgIds_.find(std::abs(motherSimTk->type())) == motherPdgIds_.end()) continue;
302  }
303 
305  Ref<GenParticleCollection> motherRef;
306  const SimTrack * mother = findGeantMother(*isimtrk, globals);
307  if (mother != nullptr) motherRef = findRef(*mother, globals);
308  if (motherRef.isNonnull()) genp.addMother(motherRef);
309  }
310 
311  cands->push_back(genp);
312  }
313 
314  // Write to the Event, and get back a handle (which can be useful for debugging)
315  edm::OrphanHandle<reco::GenParticleCollection> orphans = event.put(std::move(cands));
316 
317 #ifdef DEBUG_PATGenCandsFromSimTracksProducer
318  std::cout << "Produced a list of " << orphans->size() << " genParticles." << std::endl;
319  for (GenParticleCollection::const_iterator it = orphans->begin(), ed = orphans->end(); it != ed; ++it) {
320  std::cout << " ";
321  std::cout << "GenParticle #" << (it - orphans->begin()) << ": pdgId " << it->pdgId()
322  << ", pt = " << it->pt() << ", eta = " << it->eta() << ", phi = " << it->phi()
323  << ", rho = " << it->vertex().Rho() << ", z = " << it->vertex().Z() << std::endl;
324  edm::Ref<GenParticleCollection> mom = it->motherRef();
325  size_t depth = 2;
326  while (mom.isNonnull()) {
327  if (mom.id() == orphans.id()) {
328  // I need to re-make the ref because they are not working until this module returns.
329  mom = edm::Ref<GenParticleCollection>(orphans, mom.key());
330  }
331  for (size_t i = 0; i < depth; ++i) std::cout << " ";
332  std::cout << "GenParticleRef [" << mom.id() << "/" << mom.key() << "]: pdgId " << mom->pdgId() << ", status = " << mom->status()
333  << ", pt = " << mom->pt() << ", eta = " << mom->eta() << ", phi = " << mom->phi()
334  << ", rho = " << mom->vertex().Rho() << ", z = " << mom->vertex().Z() << std::endl;
335  if (mom.id() != orphans.id()) break;
336  if ((mom->motherRef().id() == mom.id()) && (mom->motherRef().key() == mom.key())) {
337  throw cms::Exception("Corrupt Data") << "A particle is it's own mother.\n";
338  }
339  mom = mom->motherRef();
340  depth++;
341  }
342  }
343  std::cout << std::endl;
344 #endif
345 
346 }
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:251
const SimTrack * findGeantMother(const SimTrack &tk, const GlobalContext &g) const
Find the mother of a given GEANT track (or NULL if it can&#39;t be found).
edm::EDGetTokenT< reco::GenParticleCollection > genParticlesToken_
Collection of GenParticles I need to make refs to. It must also have its associated vector<int> of ba...
edm::EDGetTokenT< std::vector< int > > genBarcodesToken_
edm::Ref< reco::GenParticleCollection > findRef(const SimTrack &tk, GlobalContext &g) const
bool writeAncestors_
If true, I&#39;ll save GenParticles corresponding to the ancestors of this GEANT particle. Common ancestors are only written once.
key_type key() const
Accessor for product key.
Definition: Ref.h:263
ProductID id() const
Accessor for product ID.
Definition: Ref.h:257
ProductID id() const
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool makeMotherLink_
If true, I&#39;ll try to make a link from the GEANT particle to a GenParticle.
reco::GenParticle makeGenParticle_(const SimTrack &tk, const edm::Ref< reco::GenParticleCollection > &mother, const GlobalContext &g) const
Make a GenParticle for this SimTrack, with a given mother.
void addMother(const typename mothers::value_type &)
add a daughter via a reference
int type() const
particle type (HEP PDT convension)
Definition: CoreSimTrack.h:22
edm::EDGetTokenT< edm::SimVertexContainer > simVertexToken_
edm::EDGetTokenT< edm::SimTrackContainer > simTracksToken_
std::vector< SimTrack > SimTrackContainer
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

const StrFilter pat::PATGenCandsFromSimTracksProducer::filter_
private

Definition at line 47 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

bool pat::PATGenCandsFromSimTracksProducer::firstEvent_
private

Definition at line 37 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

edm::EDGetTokenT<std::vector<int> > pat::PATGenCandsFromSimTracksProducer::genBarcodesToken_
private

Definition at line 56 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

edm::EDGetTokenT<reco::GenParticleCollection> pat::PATGenCandsFromSimTracksProducer::genParticlesToken_
private

Collection of GenParticles I need to make refs to. It must also have its associated vector<int> of barcodes, aligned with them.

Definition at line 55 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

bool pat::PATGenCandsFromSimTracksProducer::makeMotherLink_
private

If true, I'll try to make a link from the GEANT particle to a GenParticle.

Definition at line 50 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by findRef(), PATGenCandsFromSimTracksProducer(), and produce().

std::set<int> pat::PATGenCandsFromSimTracksProducer::motherPdgIds_
private

Definition at line 43 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

std::vector<PdtEntry> pat::PATGenCandsFromSimTracksProducer::motherPdts_
private
std::set<int> pat::PATGenCandsFromSimTracksProducer::pdgIds_
private

Definition at line 41 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

std::vector<PdtEntry> pat::PATGenCandsFromSimTracksProducer::pdts_
private
int pat::PATGenCandsFromSimTracksProducer::setStatus_
private

Definition at line 40 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by makeGenParticle_().

edm::EDGetTokenT<edm::SimTrackContainer> pat::PATGenCandsFromSimTracksProducer::simTracksToken_
private

Definition at line 38 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

edm::EDGetTokenT<edm::SimVertexContainer> pat::PATGenCandsFromSimTracksProducer::simVertexToken_
private

Definition at line 39 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by produce().

bool pat::PATGenCandsFromSimTracksProducer::writeAncestors_
private

If true, I'll save GenParticles corresponding to the ancestors of this GEANT particle. Common ancestors are only written once.

Definition at line 52 of file PATGenCandsFromSimTracksProducer.cc.

Referenced by findRef(), PATGenCandsFromSimTracksProducer(), and produce().