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 {
56  evt.getByToken(associator_, assoc);
59  evt.getByToken(tracks_, tracks);
61  auto trackingParticlesFound = evt.getByToken(trackingParticles_, trackingParticles);
62  Handle<vector<int>> barCodes;
63  evt.getByToken(genParticleInts_, barCodes);
65  evt.getByToken(genParticles_, genParticles);
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  }
71  RecoToSimCollection associations = associator->associateRecoToSim(tracks, trackingParticles);
73  size_t n = tracks->size();
74  vector<int> indices(n, -1);
75  for (size_t i = 0; i < n; ++i) {
76  RefToBase<Track> track(tracks, 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 
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
edm::Association< reco::GenParticleCollection > GenParticleMatch
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
void produce(edm::StreamID, edm::Event &evt, const edm::EventSetup &es) const override
std::vector< TrackingParticle > TrackingParticleCollection
const_iterator end() const
last iterator over the map (read only)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
const_iterator find(const key_type &k) const
find element with specified reference key
void insert(const H &h, I begin, I end)
Definition: ValueMap.h:53
edm::RefProd< GenParticleCollection > GenParticleRefProd
persistent reference to a GenParticle collection
edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator > associator_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::EDGetTokenT< edm::View< reco::Track > > tracks_
double f[11][100]
edm::EDGetTokenT< std::vector< int > > genParticleInts_
reco::RecoToSimCollection associateRecoToSim(const edm::Handle< edm::View< reco::Track >> &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const
bool throwOnMissingTPCollection_
T const * product() const
Definition: Handle.h:74
double b
Definition: hdecay.h:120
MCTrackMatcher(const edm::ParameterSet &)
constructor
fixed size matrix
HLT enums.
const std::vector< reco::CandidatePtr > & tracks_
int status() const final
status word
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
edm::EDGetTokenT< GenParticleCollection > genParticles_
edm::EDGetTokenT< TrackingParticleCollection > trackingParticles_
def move(src, dest)
Definition: eostools.py:511