CMS 3D CMS Logo

ShiftedPFCandidateProducerByMatchedObject.h
Go to the documentation of this file.
1 #ifndef PhysicsTools_PatUtils_ShiftedPFCandidateProducerByMatchedObject_h
2 #define PhysicsTools_PatUtils_ShiftedPFCandidateProducerByMatchedObject_h
3 
18 
20 
23 
27 
28 #include <string>
29 #include <vector>
30 
32 {
33  public:
34 
37 
38  private:
39 
40  void produce(edm::Event&, const edm::EventSetup&) override;
41 
45 
50 
52  {
54  const reco::Candidate::LorentzVector& unshiftedObjectP4, double dRmatch)
55  : shiftedObjectP4_(shiftedObjectP4),
56  unshiftedObjectP4_(unshiftedObjectP4),
57  dRmatch_(dRmatch),
59  {
60  if ( unshiftedObjectP4.energy() > 0. ) {
61  shift_ = (shiftedObjectP4.energy()/unshiftedObjectP4.energy()) - 1.;
62  isValidMatch_ = true;
63  }
64  }
68  double dRmatch_;
69  double shift_;
71  };
72 
73  std::vector<objectEntryType> objects_;
74 };
75 
76 #endif
77 
78 
79 
80 
objectEntryType(const reco::Candidate::LorentzVector &shiftedObjectP4, const reco::Candidate::LorentzVector &unshiftedObjectP4, double dRmatch)
edm::EDGetTokenT< edm::View< reco::Candidate > > srcShiftedObjects_
edm::EDGetTokenT< edm::View< reco::Candidate > > srcUnshiftedObjects_
edm::EDGetTokenT< reco::PFCandidateCollection > srcPFCandidates_
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
void produce(edm::Event &, const edm::EventSetup &) override