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 ()
 
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
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

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

Private Attributes

edm::InputTag matched_
 
bool printdebug_
 
edm::InputTag source_
 

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
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 18 of file CandOneToManyDeltaRMatcher.cc.

Constructor & Destructor Documentation

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

Definition at line 65 of file CandOneToManyDeltaRMatcher.cc.

65  :
66  source_( cfg.getParameter<InputTag>( "src" ) ),
67  matched_( cfg.getParameter<InputTag>( "matched" ) ),
68  printdebug_( cfg.getUntrackedParameter<bool>("printDebug", false) ) {
69  produces<CandMatchMapMany>();
70 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
CandOneToManyDeltaRMatcher::~CandOneToManyDeltaRMatcher ( )

Definition at line 72 of file CandOneToManyDeltaRMatcher.cc.

72  {
73 }

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 75 of file CandOneToManyDeltaRMatcher.cc.

References trackerHits::c, gather_cfg::cout, reco::Candidate::et(), reco::Candidate::eta(), first, edm::Event::getByLabel(), m, match(), matched_, reco::Candidate::p4(), reco::Candidate::phi(), printdebug_, edm::Event::put(), edm::second(), python.multivaluedict::sort(), LaserTracksInput_cfi::source, source_, alcazmumu_cfi::src, and findQualityFiles::v.

75  {
76 
79  evt.getByLabel( source_, source ) ;
80  evt.getByLabel( matched_, matched ) ;
81 
82  if (printdebug_) {
83  for( CandidateCollection::const_iterator c = source->begin(); c != source->end(); ++c ) {
84  cout << "[CandOneToManyDeltaRMatcher] Et source " << c->et() << endl;
85  }
86  for( CandidateCollection::const_iterator c = matched->begin(); c != matched->end(); ++c ) {
87  cout << "[CandOneToManyDeltaRMatcher] Et matched " << c->et() << endl;
88  }
89  }
90 
91 
92  auto_ptr<CandMatchMapMany> matchMap( new CandMatchMapMany( CandMatchMapMany::ref_type( CandidateRefProd( source ),
93  CandidateRefProd( matched )
94  ) ) );
95  for( size_t c = 0; c != source->size(); ++ c ) {
96  const Candidate & src = (*source)[ c ];
97  if (printdebug_) cout << "[CandOneToManyDeltaRMatcher] source (Et,Eta,Phi) =(" << src.et() << "," <<
98  src.eta() << "," <<
99  src.phi() << ")" << endl;
100  vector<reco::helper::MatchPair> v;
101  for( size_t m = 0; m != matched->size(); ++ m ) {
102  const Candidate & match = ( * matched )[ m ];
103  double dist = DeltaR( src.p4() , match.p4() );
104  v.push_back( make_pair( m, dist ) );
105  }
106  if ( v.size() > 0 ) {
107  sort( v.begin(), v.end(), reco::helper::SortBySecond() );
108  for( size_t m = 0; m != v.size(); ++ m ) {
109  if (printdebug_) cout << "[CandOneToManyDeltaRMatcher] match (Et,Eta,Phi) =(" << ( * matched )[ v[m].first ].et() << "," <<
110  ( * matched )[ v[m].first ].eta() << "," <<
111  ( * matched )[ v[m].first ].phi() << ") DeltaR=" <<
112  v[m].second << endl;
113  matchMap->insert( CandidateRef( source, c ), make_pair( CandidateRef( matched, v[m].first ), v[m].second ) );
114  }
115  }
116  }
117 
118  evt.put( matchMap );
119 
120 }
edm::AssociationMap< edm::OneToManyWithQuality< reco::CandidateCollection, reco::CandidateCollection, double > > CandMatchMapMany
Definition: deltaR.h:79
virtual double et() const =0
transverse energy
virtual float eta() const =0
momentum pseudorapidity
virtual float phi() const =0
momentum azimuthal angle
U second(std::pair< T, U > const &p)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
bool first
Definition: L1TdeRCT.cc:94
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
edm::Ref< CandidateCollection > CandidateRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:29
Tag::ref_type ref_type
reference set type
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:6
edm::RefProd< CandidateCollection > CandidateRefProd
reference to a collection of Candidate objects
Definition: CandidateFwd.h:37
virtual const LorentzVector & p4() const =0
four-momentum Lorentz vector

Member Data Documentation

edm::InputTag CandOneToManyDeltaRMatcher::matched_
private

Definition at line 26 of file CandOneToManyDeltaRMatcher.cc.

Referenced by produce().

bool CandOneToManyDeltaRMatcher::printdebug_
private

Definition at line 27 of file CandOneToManyDeltaRMatcher.cc.

Referenced by produce().

edm::InputTag CandOneToManyDeltaRMatcher::source_
private