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 Attributes
pat::PATCompositeCandidateProducer Class Reference

Produces the pat::CompositeCandidate. More...

#include "PhysicsTools/PatAlgos/interface/PATCompositeCandidateProducer.h"

Inheritance diagram for pat::PATCompositeCandidateProducer:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 PATCompositeCandidateProducer (const edm::ParameterSet &iConfig)
 
virtual void produce (edm::Event &iEvent, const edm::EventSetup &iSetup)
 
 ~PATCompositeCandidateProducer ()
 
- 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 Attributes

bool addEfficiencies_
 
bool addResolutions_
 
pat::helper::EfficiencyLoader efficiencyLoader_
 
pat::helper::KinResolutionsLoader resolutionLoader_
 
edm::InputTag src_
 
pat::PATUserDataHelper
< pat::CompositeCandidate
userDataHelper_
 
bool useUserData_
 

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

Produces the pat::CompositeCandidate.

The PATCompositeCandidateProducer produces the analysis-level pat::CompositeCandidate starting from any collection of Candidates

Author
Salvatore Rappoccio
Version
Id:
PATCompositeCandidateProducer.h,v 1.3 2009/06/25 23:49:35 gpetrucc Exp

Definition at line 41 of file PATCompositeCandidateProducer.h.

Constructor & Destructor Documentation

PATCompositeCandidateProducer::PATCompositeCandidateProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 21 of file PATCompositeCandidateProducer.cc.

References addEfficiencies_, addResolutions_, efficiencyLoader_, edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), resolutionLoader_, src_, and useUserData_.

21  :
22  userDataHelper_( iConfig.getParameter<edm::ParameterSet>("userData") )
23 {
24  // initialize the configurables
25  src_ = iConfig.getParameter<InputTag>( "src" );
26 
27  useUserData_ = false;
28  if ( iConfig.exists("userData") ) {
29  useUserData_ = true;
30  }
31 
32  // Efficiency configurables
33  addEfficiencies_ = iConfig.getParameter<bool>("addEfficiencies");
34  if (addEfficiencies_) {
36  }
37 
38  // Resolution configurables
39  addResolutions_ = iConfig.getParameter<bool>("addResolutions");
40  if (addResolutions_) {
42  }
43 
44 
45  // produces vector of particles
46  produces<vector<pat::CompositeCandidate> >();
47 
48 }
T getParameter(std::string const &) const
pat::PATUserDataHelper< pat::CompositeCandidate > userDataHelper_
bool exists(std::string const &parameterName) const
checks if a parameter exists
pat::helper::KinResolutionsLoader resolutionLoader_
pat::helper::EfficiencyLoader efficiencyLoader_
PATCompositeCandidateProducer::~PATCompositeCandidateProducer ( )

Definition at line 50 of file PATCompositeCandidateProducer.cc.

50  {
51 }

Member Function Documentation

void PATCompositeCandidateProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 53 of file PATCompositeCandidateProducer.cc.

References efficiencyLoader_, pat::helper::EfficiencyLoader::enabled(), pat::helper::KinResolutionsLoader::enabled(), edm::Event::getByLabel(), i, edm::HandleBase::isValid(), pat::helper::EfficiencyLoader::newEvent(), pat::helper::KinResolutionsLoader::newEvent(), edm::Event::put(), resolutionLoader_, pat::helper::EfficiencyLoader::setEfficiencies(), pat::helper::KinResolutionsLoader::setResolutions(), src_, userDataHelper_, and useUserData_.

53  {
54  // Get the vector of CompositeCandidate's from the event
56  iEvent.getByLabel(src_, cands);
57 
59  if (resolutionLoader_.enabled()) resolutionLoader_.newEvent(iEvent, iSetup);
60 
61  auto_ptr<vector<pat::CompositeCandidate> > myCompositeCandidates ( new vector<pat::CompositeCandidate>() );
62 
63  if ( cands.isValid() ) {
64 
65  View<reco::CompositeCandidate>::const_iterator ibegin = cands->begin(),
66  iend = cands->end(), i = ibegin;
67  for ( ; i != iend; ++i ) {
68 
70 
71  if ( useUserData_ ) {
72  userDataHelper_.add( cand, iEvent, iSetup );
73  }
74 
75  if (efficiencyLoader_.enabled()) efficiencyLoader_.setEfficiencies( cand, cands->refAt(i - cands->begin()) );
77 
78  myCompositeCandidates->push_back( cand );
79  }
80 
81  }// end if the two handles are valid
82 
83  iEvent.put(myCompositeCandidates);
84 
85 }
bool enabled() const
&#39;true&#39; if this there is at least one efficiency configured
Analysis-level particle class.
int i
Definition: DBlmapReader.cc:9
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
pat::PATUserDataHelper< pat::CompositeCandidate > userDataHelper_
void setResolutions(pat::PATObject< T > &obj) const
Sets the efficiencies for this object, using the reference to the original objects.
bool enabled() const
&#39;true&#39; if this there is at least one efficiency configured
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
pat::helper::KinResolutionsLoader resolutionLoader_
bool isValid() const
Definition: HandleBase.h:76
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
void setEfficiencies(pat::PATObject< T > &obj, const R &originalRef) const
Sets the efficiencies for this object, using the reference to the original objects.
void newEvent(const edm::Event &event, const edm::EventSetup &setup) const
To be called for each new event, reads in the EventSetup object.
void newEvent(const edm::Event &event) const
To be called for each new event, reads in the ValueMaps for efficiencies.
pat::helper::EfficiencyLoader efficiencyLoader_

Member Data Documentation

bool pat::PATCompositeCandidateProducer::addEfficiencies_
private

Definition at line 58 of file PATCompositeCandidateProducer.h.

Referenced by PATCompositeCandidateProducer().

bool pat::PATCompositeCandidateProducer::addResolutions_
private

Definition at line 61 of file PATCompositeCandidateProducer.h.

Referenced by PATCompositeCandidateProducer().

pat::helper::EfficiencyLoader pat::PATCompositeCandidateProducer::efficiencyLoader_
private

Definition at line 59 of file PATCompositeCandidateProducer.h.

Referenced by PATCompositeCandidateProducer(), and produce().

pat::helper::KinResolutionsLoader pat::PATCompositeCandidateProducer::resolutionLoader_
private

Definition at line 62 of file PATCompositeCandidateProducer.h.

Referenced by PATCompositeCandidateProducer(), and produce().

edm::InputTag pat::PATCompositeCandidateProducer::src_
private

Definition at line 53 of file PATCompositeCandidateProducer.h.

Referenced by PATCompositeCandidateProducer(), and produce().

pat::PATUserDataHelper<pat::CompositeCandidate> pat::PATCompositeCandidateProducer::userDataHelper_
private

Definition at line 56 of file PATCompositeCandidateProducer.h.

Referenced by produce().

bool pat::PATCompositeCandidateProducer::useUserData_
private

Definition at line 55 of file PATCompositeCandidateProducer.h.

Referenced by PATCompositeCandidateProducer(), and produce().