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 Member Functions | Private Attributes
pat::MatcherByPulls< T > Class Template Reference

#include <MuonAnalysis/MuonAssociators/src/MatcherByPulls.cc>

Inheritance diagram for pat::MatcherByPulls< T >:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 MatcherByPulls (const edm::ParameterSet &)
 
 ~MatcherByPulls ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

MatcherByPullsAlgorithm algo_
 
edm::EDGetTokenT< std::vector
< reco::GenParticle > > 
matchedToken_
 The MC objects to match against. More...
 
StringCutObjectSelector
< reco::GenParticle
mcSel_
 Preselection cut on MC objects. More...
 
edm::EDGetTokenT< edm::View< T > > srcToken_
 The RECO objects. More...
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

template<typename T>
class pat::MatcherByPulls< T >

Description: Matches RecoCandidates to (Gen)Particles by looking at the pulls fo the track parameters. Produces as output an edm::Association to GenParticles, and a ValueMap with the pull values.

Implementation: uses MatcherByPullsAlgorithm the module is in the pat namespace, but it doesn't have any PAT dependency.

Definition at line 48 of file MatcherByPulls.cc.

Constructor & Destructor Documentation

template<typename T >
pat::MatcherByPulls< T >::MatcherByPulls ( const edm::ParameterSet iConfig)
explicit

Definition at line 77 of file MatcherByPulls.cc.

77  :
79  matchedToken_(consumes<std::vector<reco::GenParticle> >(iConfig.getParameter<edm::InputTag>("matched"))),
80  mcSel_(iConfig.getParameter<std::string>("matchedSelector")),
81  algo_(iConfig)
82 {
83  produces<edm::Association<std::vector<reco::GenParticle> > >();
84  produces<edm::ValueMap<float> >("pulls");
85 }
T getParameter(std::string const &) const
edm::EDGetTokenT< edm::View< T > > srcToken_
The RECO objects.
StringCutObjectSelector< reco::GenParticle > mcSel_
Preselection cut on MC objects.
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< std::vector< reco::GenParticle > > matchedToken_
The MC objects to match against.
MatcherByPullsAlgorithm algo_
template<typename T >
pat::MatcherByPulls< T >::~MatcherByPulls ( )

Definition at line 88 of file MatcherByPulls.cc.

89 {
90 }

Member Function Documentation

template<typename T >
void pat::MatcherByPulls< T >::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDProducer.

Definition at line 102 of file MatcherByPulls.cc.

References algo_(), edm::helper::Filler< Map >::fill(), edm::Event::getByToken(), i, edm::helper::Filler< Map >::insert(), visualization-live-secondInstance_cfg::m, matches, gen::n, edm::Event::put(), alcazmumu_cfi::src, and create_public_lumi_plots::transform.

103 {
104  typedef std::vector<reco::GenParticle> MCColl;
106  edm::Handle<MCColl> cands;
107  iEvent.getByToken(srcToken_, src);
108  iEvent.getByToken(matchedToken_, cands);
109 
110  std::vector<uint8_t> candGood(cands->size(),1);
111  std::transform(cands->begin(), cands->end(), candGood.begin(), mcSel_);
112 
113  std::vector<int> matches(src->size(),-1);
114  std::vector<float> pulls(src->size(), 1e39);
115  for (size_t i = 0, n = src->size(); i < n; ++i) {
116  const T &tk = (*src)[i];
117  std::pair<int,float> m = algo_.match(tk, *cands, candGood);
118  matches[i] = m.first;
119  pulls[i] = m.second;
120  }
121 
122  typedef edm::Association<MCColl> MCAsso;
123  std::auto_ptr<MCAsso> matchesMap(new MCAsso(edm::RefProd<MCColl>(cands)));
124  MCAsso::Filler matchesFiller(*matchesMap);
125  matchesFiller.insert(src, matches.begin(), matches.end());
126  matchesFiller.fill();
127  iEvent.put(matchesMap);
128 
129  std::auto_ptr<edm::ValueMap<float> > pullsMap(new edm::ValueMap<float>());
130  edm::ValueMap<float>::Filler pullsFiller(*pullsMap);
131  pullsFiller.insert(src, pulls.begin(), pulls.end());
132  pullsFiller.fill();
133  iEvent.put(pullsMap, "pulls");
134 }
int i
Definition: DBlmapReader.cc:9
edm::EDGetTokenT< edm::View< T > > srcToken_
The RECO objects.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
std::pair< bool, float > match(const reco::Track &tk, const reco::Candidate &mc, const AlgebraicSymMatrix55 &invertedCovariance) const
StringCutObjectSelector< reco::GenParticle > mcSel_
Preselection cut on MC objects.
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
edm::EDGetTokenT< std::vector< reco::GenParticle > > matchedToken_
The MC objects to match against.
MatcherByPullsAlgorithm algo_
long double T

Member Data Documentation

template<typename T >
MatcherByPullsAlgorithm pat::MatcherByPulls< T >::algo_
private

Definition at line 65 of file MatcherByPulls.cc.

template<typename T >
edm::EDGetTokenT<std::vector<reco::GenParticle> > pat::MatcherByPulls< T >::matchedToken_
private

The MC objects to match against.

Definition at line 60 of file MatcherByPulls.cc.

template<typename T >
StringCutObjectSelector<reco::GenParticle> pat::MatcherByPulls< T >::mcSel_
private

Preselection cut on MC objects.

Definition at line 63 of file MatcherByPulls.cc.

template<typename T >
edm::EDGetTokenT<edm::View<T> > pat::MatcherByPulls< T >::srcToken_
private

The RECO objects.

Definition at line 57 of file MatcherByPulls.cc.