CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ShiftedPFCandidateProducerForNoPileUpPFMEt.cc
Go to the documentation of this file.
2 
5 
7 
9  : srcPFCandidatesToken_(consumes<reco::PFCandidateCollection>(cfg.getParameter<edm::InputTag>("srcPFCandidates")))
10  , srcJetsToken_(consumes<reco::PFJetCollection>(cfg.getParameter<edm::InputTag>("srcJets")))
11 {
12 
13  jetCorrUncertaintyTag_ = cfg.getParameter<std::string>("jetCorrUncertaintyTag");
14  if ( cfg.exists("jetCorrInputFileName") ) {
15  jetCorrInputFileName_ = cfg.getParameter<edm::FileInPath>("jetCorrInputFileName");
16  if ( jetCorrInputFileName_.location() == edm::FileInPath::Unknown) throw cms::Exception("ShiftedJetProducerT")
17  << " Failed to find JEC parameter file = " << jetCorrInputFileName_ << " !!\n";
20  } else {
21  jetCorrPayloadName_ = cfg.getParameter<std::string>("jetCorrPayloadName");
22  }
23 
24  minJetPt_ = cfg.getParameter<double>("minJetPt");
25 
26  shiftBy_ = cfg.getParameter<double>("shiftBy");
27 
28  unclEnUncertainty_ = cfg.getParameter<double>("unclEnUncertainty");
29 
30  produces<reco::PFCandidateCollection>();
31 }
32 
34 {
35 // nothing to be done yet...
36 }
37 
39 {
40  edm::Handle<reco::PFCandidateCollection> originalPFCandidates;
41  evt.getByToken(srcPFCandidatesToken_, originalPFCandidates);
42 
44  evt.getByToken(srcJetsToken_, jets);
45 
46  std::vector<const reco::PFJet*> selectedJets;
47  for ( reco::PFJetCollection::const_iterator jet = jets->begin();
48  jet != jets->end(); ++jet ) {
49  if ( jet->pt() > minJetPt_ ) selectedJets.push_back(&(*jet));
50  }
51 
52  if ( jetCorrPayloadName_ != "" ) {
54  es.get<JetCorrectionsRecord>().get(jetCorrPayloadName_, jetCorrParameterSet);
55  const JetCorrectorParameters& jetCorrParameters = (*jetCorrParameterSet)[jetCorrUncertaintyTag_];
56  delete jecUncertainty_;
57  jecUncertainty_ = new JetCorrectionUncertainty(jetCorrParameters);
58  }
59 
60  std::auto_ptr<reco::PFCandidateCollection> shiftedPFCandidates(new reco::PFCandidateCollection);
61 
62  for ( reco::PFCandidateCollection::const_iterator originalPFCandidate = originalPFCandidates->begin();
63  originalPFCandidate != originalPFCandidates->end(); ++originalPFCandidate ) {
64 
65  const reco::PFJet* jet_matched = 0;
66  for ( std::vector<const reco::PFJet*>::iterator jet = selectedJets.begin();
67  jet != selectedJets.end(); ++jet ) {
68  std::vector<reco::PFCandidatePtr> jetConstituents = (*jet)->getPFConstituents();
69  for ( std::vector<reco::PFCandidatePtr>::const_iterator jetConstituent = jetConstituents.begin();
70  jetConstituent != jetConstituents.end() && !jet_matched; ++jetConstituent ) {
71  if ( deltaR(originalPFCandidate->p4(), (*jetConstituent)->p4()) < 1.e-2 ) jet_matched = (*jet);
72  }
73  }
74 
75  double shift = 0.;
76  if ( jet_matched ) {
77  jecUncertainty_->setJetEta(jet_matched->eta());
78  jecUncertainty_->setJetPt(jet_matched->pt());
79 
80  shift = jecUncertainty_->getUncertainty(true);
81  } else {
82  shift = unclEnUncertainty_;
83  }
84 
85  shift *= shiftBy_;
86 
87  reco::Candidate::LorentzVector shiftedPFCandidateP4 = originalPFCandidate->p4();
88  shiftedPFCandidateP4 *= (1. + shift);
89 
90  reco::PFCandidate shiftedPFCandidate(*originalPFCandidate);
91  shiftedPFCandidate.setP4(shiftedPFCandidateP4);
92 
93  shiftedPFCandidates->push_back(shiftedPFCandidate);
94  }
95 
96  evt.put(shiftedPFCandidates);
97 }
98 
100 
102 
103 
104 
T getParameter(std::string const &) const
tuple cfg
Definition: looper.py:293
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
bool exists(std::string const &parameterName) const
checks if a parameter exists
edm::EDGetTokenT< reco::PFCandidateCollection > srcPFCandidatesToken_
Jets made from PFObjects.
Definition: PFJet.h:21
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
vector< PseudoJet > jets
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
LocationCode location() const
Where was the file found?
Definition: FileInPath.cc:178
const T & get() const
Definition: EventSetup.h:56
virtual void setP4(const LorentzVector &p4) final
set 4-momentum
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
std::vector< PFJet > PFJetCollection
collection of PFJet objects
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:39
static unsigned int const shift
virtual std::vector< reco::PFCandidatePtr > getPFConstituents() const
get all constituents
Definition: PFJet.cc:52
float getUncertainty(bool fDirection)
virtual double eta() const final
momentum pseudorapidity
std::string fullPath() const
Definition: FileInPath.cc:184
virtual double pt() const final
transverse momentum