CMS 3D CMS Logo

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_) {
30  efficiencyLoader_ = pat::helper::EfficiencyLoader(iConfig.getParameter<edm::ParameterSet>("efficiencies"), consumesCollector());
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 myCompositeCandidates = std::make_unique<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( std::move(cand) );
72  }
73 
74  }// end if the two handles are valid
75 
76  iEvent.put(std::move(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
void newEvent(const edm::Event &event)
To be called for each new event, reads in the ValueMaps for efficiencies.
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
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
Definition: HeavyIon.h:7
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void newEvent(const edm::Event &event, const edm::EventSetup &setup)
To be called for each new event, reads in the EventSetup object.
pat::helper::KinResolutionsLoader resolutionLoader_
bool isValid() const
Definition: HandleBase.h:74
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_
fixed size matrix
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
PATCompositeCandidateProducer(const edm::ParameterSet &iConfig)
def move(src, dest)
Definition: eostools.py:511
pat::helper::EfficiencyLoader efficiencyLoader_