CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PATCompositeCandidateProducer.cc
Go to the documentation of this file.
1 //
2 //
3 
11 #include <memory>
12 
13 
14 #include <iostream>
15 
16 using namespace pat;
17 using namespace std;
18 using namespace edm;
19 
21  srcToken_(consumes<edm::View<reco::CompositeCandidate> >(iConfig.getParameter<InputTag>( "src" ))),
22  useUserData_(iConfig.exists("userData")),
23  userDataHelper_( iConfig.getParameter<edm::ParameterSet>("userData"), consumesCollector() ),
24  addEfficiencies_(iConfig.getParameter<bool>("addEfficiencies")),
25  addResolutions_(iConfig.getParameter<bool>("addResolutions"))
26 {
27 
28  // Efficiency configurables
29  if (addEfficiencies_) {
31  }
32 
33  // Resolution configurables
34  if (addResolutions_) {
36  }
37 
38  // produces vector of particles
39  produces<vector<pat::CompositeCandidate> >();
40 
41 }
42 
44 }
45 
47  // Get the vector of CompositeCandidate's from the event
49  iEvent.getByToken(srcToken_, cands);
50 
52  if (resolutionLoader_.enabled()) resolutionLoader_.newEvent(iEvent, iSetup);
53 
54  auto_ptr<vector<pat::CompositeCandidate> > myCompositeCandidates ( new vector<pat::CompositeCandidate>() );
55 
56  if ( cands.isValid() ) {
57 
58  View<reco::CompositeCandidate>::const_iterator ibegin = cands->begin(),
59  iend = cands->end(), i = ibegin;
60  for ( ; i != iend; ++i ) {
61 
63 
64  if ( useUserData_ ) {
65  userDataHelper_.add( cand, iEvent, iSetup );
66  }
67 
68  if (efficiencyLoader_.enabled()) efficiencyLoader_.setEfficiencies( cand, cands->refAt(i - cands->begin()) );
70 
71  myCompositeCandidates->push_back( cand );
72  }
73 
74  }// end if the two handles are valid
75 
76  iEvent.put(myCompositeCandidates);
77 
78 }
79 
81 
bool enabled() const
&#39;true&#39; if this there is at least one efficiency configured
Analysis-level particle class.
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
void newEvent(const edm::Event &event)
To be called for each new event, reads in the ValueMaps for efficiencies.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
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
int iEvent
Definition: GenABIO.cc:230
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
void newEvent(const edm::Event &event, const edm::EventSetup &setup)
To be called for each new event, reads in the EventSetup object.
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
pat::helper::KinResolutionsLoader resolutionLoader_
bool isValid() const
Definition: HandleBase.h:75
void setEfficiencies(pat::PATObject< T > &obj, const R &originalRef) const
Sets the efficiencies for this object, using the reference to the original objects.
Produces the pat::CompositeCandidate.
const edm::EDGetTokenT< edm::View< reco::CompositeCandidate > > srcToken_
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
PATCompositeCandidateProducer(const edm::ParameterSet &iConfig)
pat::helper::EfficiencyLoader efficiencyLoader_