CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
MCTrackMatcher Class Reference
Inheritance diagram for MCTrackMatcher:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 MCTrackMatcher (const edm::ParameterSet &)
 constructor More...
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Types

typedef edm::Association
< reco::GenParticleCollection
GenParticleMatch
 

Private Member Functions

void produce (edm::Event &evt, const edm::EventSetup &es)
 

Private Attributes

std::string associator_
 
edm::InputTag genParticles_
 
edm::InputTag trackingParticles_
 
edm::InputTag tracks_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Author
Luca Lista, INFN
Version
Id:
MCTrackMatcher.cc,v 1.6 2010/02/11 00:15:09 wmtan Exp

Definition at line 15 of file MCTrackMatcher.cc.

Member Typedef Documentation

Definition at line 24 of file MCTrackMatcher.cc.

Constructor & Destructor Documentation

MCTrackMatcher::MCTrackMatcher ( const edm::ParameterSet p)

constructor

Definition at line 39 of file MCTrackMatcher.cc.

39  :
40  associator_(p.getParameter<string>("associator")),
41  tracks_(p.getParameter<InputTag>("tracks")),
42  genParticles_( p.getParameter<InputTag>("genParticles")),
43  trackingParticles_( p.getParameter<InputTag>("trackingParticles")) {
44  produces<GenParticleMatch>();
45 }
T getParameter(std::string const &) const
std::string associator_
edm::InputTag genParticles_
edm::InputTag trackingParticles_
edm::InputTag tracks_

Member Function Documentation

void MCTrackMatcher::produce ( edm::Event evt,
const edm::EventSetup es 
)
privatevirtual

Implements edm::EDProducer.

Definition at line 47 of file MCTrackMatcher.cc.

References TrackAssociatorBase::associateRecoToSim(), associator_, b, alignCSCRings::e, edm::AssociationMap< Tag >::end(), edm::hlt::Exception, f, edm::helper::Filler< Map >::fill(), spr::find(), edm::AssociationMap< Tag >::find(), configurableAnalysis::GenParticle, genParticleCandidates2GenParticles_cfi::genParticles, genParticles_, edm::EventSetup::get(), edm::Event::getByLabel(), i, errorMatrix2Lands::indices, edm::helper::Filler< Map >::insert(), edm::errors::InvalidReference, j, match(), n, AlCaHLTBitMon_ParallelJobs::p, edm::ESHandle< class >::product(), edm::Event::put(), trackingParticlesFastSim_cfi::trackingParticles, trackingParticles_, testEve_cfg::tracks, and tracks_.

47  {
49  es.get<TrackAssociatorRecord>().get(associator_,assoc);
50  const TrackAssociatorBase * associator = assoc.product();
52  evt.getByLabel(tracks_, tracks);
54  evt.getByLabel(trackingParticles_,trackingParticles);
55  Handle<vector<int> > barCodes;
56  evt.getByLabel(genParticles_,barCodes );
58  evt.getByLabel(genParticles_, genParticles );
59  RecoToSimCollection associations = associator->associateRecoToSim ( tracks, trackingParticles, & evt );
60  auto_ptr<GenParticleMatch> match(new GenParticleMatch(GenParticleRefProd(genParticles)));
62  size_t n = tracks->size();
63  vector<int> indices(n,-1);
64  for (size_t i = 0; i < n; ++ i ) {
65  RefToBase<Track> track(tracks, i);
66  RecoToSimCollection::const_iterator f = associations.find(track);
67  if ( f != associations.end() ) {
68  TrackingParticleRef tp = f->val.front().first;
69  const HepMC::GenParticle * particle = 0;
70  TrackingParticle::genp_iterator j, b = tp->genParticle_begin(), e = tp->genParticle_end();
71  for( j = b; j != e; ++ j ) {
72  const HepMC::GenParticle * p = j->get();
73  if (p->status() == 1) {
74  particle = p; break;
75  }
76  }
77  if( particle != 0 ) {
78  int barCode = particle->barcode();
79  vector<int>::const_iterator
80  b = barCodes->begin(), e = barCodes->end(), f = find( b, e, barCode );
82  << "found matching particle with barcode" << *f
83  << " which has not been found in " << genParticles_;
84  indices[i] = *f;
85  }
86  }
87  }
88  filler.insert(tracks, indices.begin(), indices.end());
89  filler.fill();
90  evt.put(match);
91 }
edm::Association< reco::GenParticleCollection > GenParticleMatch
int i
Definition: DBlmapReader.cc:9
const_iterator end() const
last iterator over the map (read only)
const_iterator find(const key_type &k) const
find element with specified reference key
edm::RefProd< GenParticleCollection > GenParticleRefProd
persistent reference to a GenParticle collection
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
std::string associator_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
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:356
virtual reco::RecoToSimCollection associateRecoToSim(edm::Handle< edm::View< reco::Track > > &tCH, edm::Handle< TrackingParticleCollection > &tPCH, const edm::Event *event=0, const edm::EventSetup *setup=0) const
compare reco to sim the handle of reco::Track and TrackingParticle collections
tuple tracks
Definition: testEve_cfg.py:39
edm::InputTag trackingParticles_
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
double b
Definition: hdecay.h:120
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:6

Member Data Documentation

std::string MCTrackMatcher::associator_
private

Definition at line 22 of file MCTrackMatcher.cc.

Referenced by produce().

edm::InputTag MCTrackMatcher::genParticles_
private

Definition at line 23 of file MCTrackMatcher.cc.

Referenced by produce().

edm::InputTag MCTrackMatcher::trackingParticles_
private

Definition at line 23 of file MCTrackMatcher.cc.

Referenced by produce().

edm::InputTag MCTrackMatcher::tracks_
private

Definition at line 23 of file MCTrackMatcher.cc.

Referenced by produce().