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
CandOneToManyDeltaRMatcher Class Reference
Inheritance diagram for CandOneToManyDeltaRMatcher:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 CandOneToManyDeltaRMatcher (const edm::ParameterSet &)
 
 ~CandOneToManyDeltaRMatcher ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 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

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

Private Attributes

edm::EDGetTokenT
< reco::CandidateCollection
matchedToken_
 
bool printdebug_
 
edm::EDGetTokenT
< reco::CandidateCollection
sourceToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- 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::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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

Definition at line 19 of file CandOneToManyDeltaRMatcher.cc.

Constructor & Destructor Documentation

CandOneToManyDeltaRMatcher::CandOneToManyDeltaRMatcher ( const edm::ParameterSet cfg)

Definition at line 66 of file CandOneToManyDeltaRMatcher.cc.

66  :
67  sourceToken_( consumes<CandidateCollection>( cfg.getParameter<InputTag>( "src" ) ) ),
68  matchedToken_( consumes<CandidateCollection>( cfg.getParameter<InputTag>( "matched" ) ) ),
69  printdebug_( cfg.getUntrackedParameter<bool>("printDebug", false) ) {
70  produces<CandMatchMapMany>();
71 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< reco::CandidateCollection > sourceToken_
edm::EDGetTokenT< reco::CandidateCollection > matchedToken_
CandOneToManyDeltaRMatcher::~CandOneToManyDeltaRMatcher ( )

Definition at line 73 of file CandOneToManyDeltaRMatcher.cc.

73  {
74 }

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 76 of file CandOneToManyDeltaRMatcher.cc.

References EnergyCorrector::c, gather_cfg::cout, HLT_25ns14e33_v1_cff::DeltaR, reco::Candidate::et(), reco::Candidate::eta(), plotBeamSpotDB::first, edm::Event::getByToken(), visualization-live-secondInstance_cfg::m, match(), matchedToken_, reco::Candidate::p4(), reco::Candidate::phi(), printdebug_, edm::Event::put(), edm::second(), python.multivaluedict::sort(), source, sourceToken_, alcazmumu_cfi::src, and findQualityFiles::v.

76  {
77 
80  evt.getByToken( sourceToken_, source ) ;
81  evt.getByToken( matchedToken_, matched ) ;
82 
83  if (printdebug_) {
84  for( CandidateCollection::const_iterator c = source->begin(); c != source->end(); ++c ) {
85  cout << "[CandOneToManyDeltaRMatcher] Et source " << c->et() << endl;
86  }
87  for( CandidateCollection::const_iterator c = matched->begin(); c != matched->end(); ++c ) {
88  cout << "[CandOneToManyDeltaRMatcher] Et matched " << c->et() << endl;
89  }
90  }
91 
92 
93  auto_ptr<CandMatchMapMany> matchMap( new CandMatchMapMany( CandMatchMapMany::ref_type( CandidateRefProd( source ),
94  CandidateRefProd( matched )
95  ) ) );
96  for( size_t c = 0; c != source->size(); ++ c ) {
97  const Candidate & src = (*source)[ c ];
98  if (printdebug_) cout << "[CandOneToManyDeltaRMatcher] source (Et,Eta,Phi) =(" << src.et() << "," <<
99  src.eta() << "," <<
100  src.phi() << ")" << endl;
101  vector<reco::helper::MatchPair> v;
102  for( size_t m = 0; m != matched->size(); ++ m ) {
103  const Candidate & match = ( * matched )[ m ];
104  double dist = DeltaR( src.p4() , match.p4() );
105  v.push_back( make_pair( m, dist ) );
106  }
107  if ( v.size() > 0 ) {
108  sort( v.begin(), v.end(), reco::helper::SortBySecond() );
109  for( size_t m = 0; m != v.size(); ++ m ) {
110  if (printdebug_) cout << "[CandOneToManyDeltaRMatcher] match (Et,Eta,Phi) =(" << ( * matched )[ v[m].first ].et() << "," <<
111  ( * matched )[ v[m].first ].eta() << "," <<
112  ( * matched )[ v[m].first ].phi() << ") DeltaR=" <<
113  v[m].second << endl;
114  matchMap->insert( CandidateRef( source, c ), make_pair( CandidateRef( matched, v[m].first ), v[m].second ) );
115  }
116  }
117  }
118 
119  evt.put( matchMap );
120 
121 }
edm::AssociationMap< edm::OneToManyWithQuality< reco::CandidateCollection, reco::CandidateCollection, double > > CandMatchMapMany
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
virtual double et() const =0
transverse energy
edm::EDGetTokenT< reco::CandidateCollection > sourceToken_
U second(std::pair< T, U > const &p)
edm::EDGetTokenT< reco::CandidateCollection > matchedToken_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
edm::Ref< CandidateCollection > CandidateRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:29
tuple cout
Definition: gather_cfg.py:121
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
edm::RefProd< CandidateCollection > CandidateRefProd
reference to a collection of Candidate objects
Definition: CandidateFwd.h:37
static std::string const source
Definition: EdmProvDump.cc:42
virtual double phi() const =0
momentum azimuthal angle
virtual double eta() const =0
momentum pseudorapidity
virtual const LorentzVector & p4() const =0
four-momentum Lorentz vector

Member Data Documentation

edm::EDGetTokenT<reco::CandidateCollection> CandOneToManyDeltaRMatcher::matchedToken_
private

Definition at line 27 of file CandOneToManyDeltaRMatcher.cc.

Referenced by produce().

bool CandOneToManyDeltaRMatcher::printdebug_
private

Definition at line 28 of file CandOneToManyDeltaRMatcher.cc.

Referenced by produce().

edm::EDGetTokenT<reco::CandidateCollection> CandOneToManyDeltaRMatcher::sourceToken_
private

Definition at line 26 of file CandOneToManyDeltaRMatcher.cc.

Referenced by produce().