CMS 3D CMS Logo

MCTrackMatcher.cc
Go to the documentation of this file.
1 
13 
14 namespace edm {
15  class ParameterSet;
16 }
17 
18 using namespace edm;
19 using namespace std;
20 using namespace reco;
21 
23 public:
26 
27 private:
28  void produce(edm::StreamID, edm::Event &evt, const edm::EventSetup &es) const override;
36 };
37 
43 
45  : associator_(consumes<reco::TrackToTrackingParticleAssociator>(p.getParameter<string>("associator"))),
46  tracks_(consumes<edm::View<reco::Track>>(p.getParameter<InputTag>("tracks"))),
47  genParticles_(consumes<GenParticleCollection>(p.getParameter<InputTag>("genParticles"))),
48  genParticleInts_(consumes<std::vector<int>>(p.getParameter<InputTag>("genParticles"))),
49  trackingParticles_(consumes<TrackingParticleCollection>(p.getParameter<InputTag>("trackingParticles"))),
50  throwOnMissingTPCollection_(p.getParameter<bool>("throwOnMissingTPCollection")) {
51  produces<GenParticleMatch>();
52 }
53 
54 void MCTrackMatcher::produce(edm::StreamID, Event &evt, const EventSetup &es) const {
61  auto trackingParticlesFound = evt.getByToken(trackingParticles_, trackingParticles);
62  Handle<vector<int>> barCodes;
63  evt.getByToken(genParticleInts_, barCodes);
66  unique_ptr<GenParticleMatch> match(new GenParticleMatch(GenParticleRefProd(genParticles)));
67  if (not throwOnMissingTPCollection_ and not trackingParticlesFound) {
68  evt.put(std::move(match));
69  return;
70  }
73  size_t n = tracks->size();
74  vector<int> indices(n, -1);
75  for (size_t i = 0; i < n; ++i) {
77  RecoToSimCollection::const_iterator f = associations.find(track);
78  if (f != associations.end()) {
79  TrackingParticleRef tp = f->val.front().first;
80  TrackingParticle::genp_iterator j, b = tp->genParticle_begin(), e = tp->genParticle_end();
81  for (j = b; j != e; ++j) {
82  const reco::GenParticle *p = j->get();
83  if (p->status() == 1) {
84  indices[i] = j->key();
85  break;
86  }
87  }
88  }
89  }
90  filler.insert(tracks, indices.begin(), indices.end());
91  filler.fill();
92  evt.put(std::move(match));
93 }
94 
96 
LCToCPAssociation_cfi.associator
associator
Definition: LCToCPAssociation_cfi.py:4
edm::StreamID
Definition: StreamID.h:30
genericTrackCandidates_cff.associations
associations
Definition: genericTrackCandidates_cff.py:45
Handle.h
electrons_cff.bool
bool
Definition: electrons_cff.py:366
mps_fire.i
i
Definition: mps_fire.py:428
HLT_FULL_cff.track
track
Definition: HLT_FULL_cff.py:11724
edm::Association::Filler
Definition: Association.h:78
genParticles2HepMC_cfi.genParticles
genParticles
Definition: genParticles2HepMC_cfi.py:4
dqmiodumpmetadata.n
n
Definition: dqmiodumpmetadata.py:28
ESHandle.h
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
reco::GenParticle
Definition: GenParticle.h:21
edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator >
edm
HLT enums.
Definition: AlignableModifier.h:19
MCTrackMatcher::associator_
edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator > associator_
Definition: MCTrackMatcher.cc:29
reco::TrackToTrackingParticleAssociator
Definition: TrackToTrackingParticleAssociator.h:51
reco::GenParticleCollection
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
Definition: GenParticleFwd.h:13
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:46
Association.h
edm::Handle< reco::TrackToTrackingParticleAssociator >
edm::Ref< TrackingParticleCollection >
GenParticle.h
trackingPlots.assoc
assoc
Definition: trackingPlots.py:183
EDMException.h
MakerMacros.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
MCTrackMatcher
Definition: MCTrackMatcher.cc:22
reco::Track
Definition: Track.h:27
edm::Event::getByToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
b
double b
Definition: hdecay.h:118
cmsswSequenceInfo.tp
tp
Definition: cmsswSequenceInfo.py:17
MCTrackMatcher::produce
void produce(edm::StreamID, edm::Event &evt, const edm::EventSetup &es) const override
Definition: MCTrackMatcher.cc:54
edm::global::EDProducer
Definition: EDProducer.h:32
edm::View
Definition: CaloClusterFwd.h:14
TrackToTrackingParticleAssociator.h
edm::ParameterSet
Definition: ParameterSet.h:47
AlCaHLTBitMon_ParallelJobs.p
def p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
Event.h
tracks
const uint32_t *__restrict__ const HitContainer *__restrict__ TkSoA *__restrict__ tracks
Definition: CAHitNtupletGeneratorKernelsImpl.h:176
MCTrackMatcher::genParticles_
edm::EDGetTokenT< GenParticleCollection > genParticles_
Definition: MCTrackMatcher.cc:31
edm::AssociationMap< edm::OneToManyWithQualityGeneric< edm::View< reco::Track >, TrackingParticleCollection, double > >
trigObjTnPSource_cfi.filler
filler
Definition: trigObjTnPSource_cfi.py:21
muonClassificationByHits_cfi.trackingParticles
trackingParticles
Definition: muonClassificationByHits_cfi.py:28
match
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
createfilelist.int
int
Definition: createfilelist.py:10
edm::Event::put
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
trackerHitRTTI::vector
Definition: trackerHitRTTI.h:21
MCTrackMatcher::MCTrackMatcher
MCTrackMatcher(const edm::ParameterSet &)
constructor
Definition: MCTrackMatcher.cc:44
edm::Association
Definition: Association.h:18
edm::EventSetup
Definition: EventSetup.h:58
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
InputTag.h
MCTrackMatcher::throwOnMissingTPCollection_
bool throwOnMissingTPCollection_
Definition: MCTrackMatcher.cc:34
TrackingParticle.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
MCTrackMatcher::GenParticleMatch
edm::Association< reco::GenParticleCollection > GenParticleMatch
Definition: MCTrackMatcher.cc:35
edm::RefVectorIterator
Definition: EDProductfwd.h:33
MCTrackMatcher::tracks_
edm::EDGetTokenT< edm::View< reco::Track > > tracks_
Definition: MCTrackMatcher.cc:30
MCTrackMatcher::trackingParticles_
edm::EDGetTokenT< TrackingParticleCollection > trackingParticles_
Definition: MCTrackMatcher.cc:33
TrackingParticleCollection
std::vector< TrackingParticle > TrackingParticleCollection
Definition: TrackingParticleFwd.h:9
edm::RefToBase
Definition: AssociativeIterator.h:54
ParameterSet.h
EDProducer.h
dqmdumpme.indices
indices
Definition: dqmdumpme.py:50
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
MCTrackMatcher::genParticleInts_
edm::EDGetTokenT< std::vector< int > > genParticleInts_
Definition: MCTrackMatcher.cc:32
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
reco::GenParticleRefProd
edm::RefProd< GenParticleCollection > GenParticleRefProd
persistent reference to a GenParticle collection
Definition: GenParticleFwd.h:23