CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 
42 
44  : associator_(consumes<reco::TrackToTrackingParticleAssociator>(p.getParameter<string>("associator"))),
45  tracks_(consumes<edm::View<reco::Track>>(p.getParameter<InputTag>("tracks"))),
46  genParticles_(consumes<GenParticleCollection>(p.getParameter<InputTag>("genParticles"))),
47  genParticleInts_(consumes<std::vector<int>>(p.getParameter<InputTag>("genParticles"))),
48  trackingParticles_(consumes<TrackingParticleCollection>(p.getParameter<InputTag>("trackingParticles"))),
49  throwOnMissingTPCollection_(p.getParameter<bool>("throwOnMissingTPCollection")) {
50  produces<GenParticleMatch>();
51 }
52 
53 void MCTrackMatcher::produce(edm::StreamID, Event &evt, const EventSetup &es) const {
55  evt.getByToken(associator_, assoc);
56  const reco::TrackToTrackingParticleAssociator *associator = assoc.product();
58  evt.getByToken(tracks_, tracks);
60  auto trackingParticlesFound = evt.getByToken(trackingParticles_, trackingParticles);
61  Handle<vector<int>> barCodes;
62  evt.getByToken(genParticleInts_, barCodes);
64  evt.getByToken(genParticles_, genParticles);
65  unique_ptr<GenParticleMatch> match(new GenParticleMatch(GenParticleRefProd(genParticles)));
66  if (not throwOnMissingTPCollection_ and not trackingParticlesFound) {
67  evt.put(std::move(match));
68  return;
69  }
70  RecoToSimCollection associations = associator->associateRecoToSim(tracks, trackingParticles);
71  GenParticleMatch::Filler filler(*match);
72  size_t n = tracks->size();
73  vector<int> indices(n, -1);
74  for (size_t i = 0; i < n; ++i) {
75  RefToBase<Track> track(tracks, i);
76  RecoToSimCollection::const_iterator f = associations.find(track);
77  if (f != associations.end()) {
78  TrackingParticleRef tp = f->val.front().first;
79  TrackingParticle::genp_iterator j, b = tp->genParticle_begin(), e = tp->genParticle_end();
80  for (j = b; j != e; ++j) {
81  const reco::GenParticle *p = j->get();
82  if (p->status() == 1) {
83  indices[i] = j->key();
84  break;
85  }
86  }
87  }
88  }
89  filler.insert(tracks, indices.begin(), indices.end());
90  filler.fill();
91  evt.put(std::move(match));
92 }
93 
95 
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:133
const_iterator end() const
last iterator over the map (read only)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
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
int status() const final
status word
edm::RefProd< GenParticleCollection > GenParticleRefProd
persistent reference to a GenParticle collection
auto const & tracks
cannot be loose
edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator > associator_
edm::EDGetTokenT< edm::View< reco::Track > > tracks_
def move
Definition: eostools.py:511
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:70
double b
Definition: hdecay.h:118
MCTrackMatcher(const edm::ParameterSet &)
constructor
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
std::vector< TrackingParticle > TrackingParticleCollection
edm::EDGetTokenT< GenParticleCollection > genParticles_
list indices
Definition: dqmdumpme.py:50
void produce(edm::StreamID, edm::Event &evt, const edm::EventSetup &es) const override
edm::EDGetTokenT< TrackingParticleCollection > trackingParticles_