CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
CandOneToManyDeltaRMatcher Class Reference
Inheritance diagram for CandOneToManyDeltaRMatcher:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 CandOneToManyDeltaRMatcher (const edm::ParameterSet &)
 
 ~CandOneToManyDeltaRMatcher () override
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
bool wantsStreamLuminosityBlocks () const final
 
bool wantsStreamRuns () const final
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducerBase () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

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

Private Attributes

edm::EDGetTokenT< reco::CandidateCollectionmatchedToken_
 
bool printdebug_
 
edm::EDGetTokenT< reco::CandidateCollectionsourceToken_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::global::EDProducerBase
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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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 ( )
override

Definition at line 73 of file CandOneToManyDeltaRMatcher.cc.

73  {
74 }

Member Function Documentation

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

Definition at line 76 of file CandOneToManyDeltaRMatcher.cc.

References edm::OwnVector< T, P >::begin(), EnergyCorrector::c, gather_cfg::cout, DEFINE_FWK_MODULE, HiRegitMuonDetachedTripletStep_cff::DeltaR, edm::OwnVector< T, P >::end(), reco::Candidate::et(), reco::Candidate::eta(), plotBeamSpotDB::first, edm::Event::getByToken(), funct::m, match(), electrons_cff::matched, matchedToken_, eostools::move(), reco::Candidate::p4(), reco::Candidate::phi(), printdebug_, edm::Event::put(), edm::second(), edm::OwnVector< T, P >::size(), source, sourceToken_, TrackRefitter_38T_cff::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 matchMap = std::make_unique<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.empty() ) {
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(std::move(matchMap) );
120 
121 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
size_type size() const
Definition: OwnVector.h:264
edm::EDGetTokenT< reco::CandidateCollection > sourceToken_
iterator begin()
Definition: OwnVector.h:244
U second(std::pair< T, U > const &p)
virtual double et() const =0
transverse energy
edm::EDGetTokenT< reco::CandidateCollection > matchedToken_
virtual const LorentzVector & p4() const =0
four-momentum Lorentz vector
iterator end()
Definition: OwnVector.h:249
virtual double eta() const =0
momentum pseudorapidity
edm::Ref< CandidateCollection > CandidateRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:29
Tag::ref_type ref_type
Holds the RefProd or RefToBaseProd of 1 or 2 collections.
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
virtual double phi() const =0
momentum azimuthal angle
static std::string const source
Definition: EdmProvDump.cc:47
def move(src, dest)
Definition: eostools.py:511

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().