CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DistortedMETProducer.cc
Go to the documentation of this file.
1 #include <memory>
6 
7 //
8 // class declaration
9 //
11  public:
12  explicit DistortedMETProducer(const edm::ParameterSet&);
14 
15  private:
16  virtual void beginJob() override ;
17  virtual void produce(edm::Event&, const edm::EventSetup&) override;
18  virtual void endJob() override ;
19 
21  double metScaleShift_; // relative shift (0. => no shift)
22 };
23 
29 
32 
33  // What is being produced
34  produces<std::vector<reco::MET> >();
35 
36  // Input products
37  metTag_ = pset.getUntrackedParameter<edm::InputTag> ("MetTag", edm::InputTag("met"));
38  // Distortions in MET in Gev**{-1/2}
39  metScaleShift_ = pset.getUntrackedParameter<double> ("MetScaleShift",1.e-3);
40 
41 }
42 
45 }
46 
49 }
50 
53 
56 
57  if (ev.isRealData()) return;
58 
59  // MET collection
60  edm::Handle<edm::View<reco::MET> > metCollection;
61  if (!ev.getByLabel(metTag_, metCollection)) {
62  edm::LogError("") << ">>> MET collection does not exist !!!";
63  return;
64  }
65  edm::RefToBase<reco::MET> met = metCollection->refAt(0);
66 
67  std::auto_ptr<reco::METCollection> newmetCollection (new reco::METCollection);
68 
69  double met_et = met->et() * (1. + metScaleShift_);
70  double sum_et = met->sumEt() * (1. + metScaleShift_);
71  double met_phi = met->phi();
72  double met_ex = met_et*cos(met_phi);
73  double met_ey = met_et*sin(met_phi);
74  reco::Particle::LorentzVector met_p4(met_ex, met_ey, 0., met_et);
75  reco::Particle::Point met_vtx(0.,0.,0.);
76  reco::MET* newmet = new reco::MET(sum_et, met_p4, met_vtx);
77 
78  newmetCollection->push_back(*newmet);
79 
80  ev.put(newmetCollection);
81 }
82 
T getUntrackedParameter(std::string const &, T const &) const
virtual double et() const GCC11_FINAL
transverse energy
tuple met
____________________________________________________________________________||
Definition: CaloMET_cfi.py:7
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
std::vector< reco::MET > METCollection
collection of MET objects
Definition: METCollection.h:23
bool isRealData() const
Definition: EventBase.h:60
virtual void beginJob() override
virtual float phi() const GCC11_FINAL
momentum azimuthal angle
double sumEt() const
Definition: MET.h:48
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
Definition: MET.h:32
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
math::XYZPoint Point
point in the space
Definition: Particle.h:31
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
virtual void produce(edm::Event &, const edm::EventSetup &) override
virtual void endJob() override
DistortedMETProducer(const edm::ParameterSet &)
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:27