CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MCTrackMatcher.cc
Go to the documentation of this file.
1 
11 
12 namespace edm { class ParameterSet; }
13 
15  public:
18 
19  private:
20  void produce( edm::Event& evt, const edm::EventSetup& es ) override;
24 };
25 
33 using namespace edm;
34 using namespace std;
35 using namespace reco;
36 
38  associator_(p.getParameter<string>("associator")),
39  tracks_(p.getParameter<InputTag>("tracks")),
40  genParticles_( p.getParameter<InputTag>("genParticles")),
41  trackingParticles_( p.getParameter<InputTag>("trackingParticles")) {
42  produces<GenParticleMatch>();
43 
44  consumes<reco::TrackToTrackingParticleAssociator>(associator_);
45  consumes<edm::View<reco::Track>>(tracks_);
46  consumes<GenParticleCollection>(genParticles_);
47  consumes<TrackingParticleCollection>(trackingParticles_);
48 }
49 
50 void MCTrackMatcher::produce(Event& evt, const EventSetup& es) {
52  evt.getByLabel(associator_,assoc);
53  const reco::TrackToTrackingParticleAssociator * associator = assoc.product();
55  evt.getByLabel(tracks_, tracks);
57  evt.getByLabel(trackingParticles_,trackingParticles);
58  Handle<vector<int> > barCodes;
59  evt.getByLabel(genParticles_,barCodes );
61  evt.getByLabel(genParticles_, genParticles );
62  RecoToSimCollection associations = associator->associateRecoToSim ( tracks, trackingParticles);
63  auto_ptr<GenParticleMatch> match(new GenParticleMatch(GenParticleRefProd(genParticles)));
64  GenParticleMatch::Filler filler(*match);
65  size_t n = tracks->size();
66  vector<int> indices(n,-1);
67  for (size_t i = 0; i < n; ++ i ) {
68  RefToBase<Track> track(tracks, i);
69  RecoToSimCollection::const_iterator f = associations.find(track);
70  if ( f != associations.end() ) {
71  TrackingParticleRef tp = f->val.front().first;
72  TrackingParticle::genp_iterator j, b = tp->genParticle_begin(), e = tp->genParticle_end();
73  for( j = b; j != e; ++ j ) {
74  const reco::GenParticle * p = j->get();
75  if (p->status() == 1) {
76  indices[i] = j->key();
77  break;
78  }
79  }
80  }
81  }
82  filler.insert(tracks, indices.begin(), indices.end());
83  filler.fill();
84  evt.put(match);
85 }
86 
88 
90 
edm::Association< reco::GenParticleCollection > GenParticleMatch
int i
Definition: DBlmapReader.cc:9
const std::vector< reco::PFCandidatePtr > & tracks_
const_iterator end() const
last iterator over the map (read only)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
virtual int status() const
status word
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:52
edm::RefProd< GenParticleCollection > GenParticleRefProd
persistent reference to a GenParticle collection
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:115
edm::InputTag associator_
edm::InputTag genParticles_
int j
Definition: DBlmapReader.cc:9
double f[11][100]
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:413
T const * product() const
Definition: Handle.h:81
reco::RecoToSimCollection associateRecoToSim(const edm::Handle< edm::View< reco::Track > > &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const
compare reco to sim the handle of reco::Track and TrackingParticle collections
tuple tracks
Definition: testEve_cfg.py:39
edm::InputTag trackingParticles_
double b
Definition: hdecay.h:120
MCTrackMatcher(const edm::ParameterSet &)
constructor
void produce(edm::Event &evt, const edm::EventSetup &es) override
edm::InputTag tracks_
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10