CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
DistortedMETProducer Class Reference
Inheritance diagram for DistortedMETProducer:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 DistortedMETProducer (const edm::ParameterSet &)
 
 ~DistortedMETProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Member Functions

virtual void beginJob ()
 
virtual void endJob ()
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 

Private Attributes

double metScaleShift_
 
edm::InputTag metTag_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 10 of file DistortedMETProducer.cc.

Constructor & Destructor Documentation

DistortedMETProducer::DistortedMETProducer ( const edm::ParameterSet pset)
explicit

Definition at line 31 of file DistortedMETProducer.cc.

References edm::ParameterSet::getUntrackedParameter(), metScaleShift_, and metTag_.

31  {
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 }
T getUntrackedParameter(std::string const &, T const &) const
DistortedMETProducer::~DistortedMETProducer ( )

Definition at line 44 of file DistortedMETProducer.cc.

44  {
45 }

Member Function Documentation

void DistortedMETProducer::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 48 of file DistortedMETProducer.cc.

48  {
49 }
void DistortedMETProducer::endJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 52 of file DistortedMETProducer.cc.

52 {}
void DistortedMETProducer::produce ( edm::Event ev,
const edm::EventSetup  
)
privatevirtual

Implements edm::EDProducer.

Definition at line 55 of file DistortedMETProducer.cc.

References funct::cos(), reco::LeafCandidate::et(), edm::Event::getByLabel(), edm::EventBase::isRealData(), CaloMET_cfi::met, metScaleShift_, metTag_, reco::LeafCandidate::phi(), edm::Event::put(), funct::sin(), and reco::MET::sumEt().

Referenced by python.JSONExport.JsonExport::export(), and python.HTMLExport.HTMLExport::export().

55  {
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 }
virtual double et() const
transverse energy
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
double sumEt() const
Definition: MET.h:48
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
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:30
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:359
virtual double phi() const
momentum azimuthal angle
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:26

Member Data Documentation

double DistortedMETProducer::metScaleShift_
private

Definition at line 21 of file DistortedMETProducer.cc.

Referenced by DistortedMETProducer(), and produce().

edm::InputTag DistortedMETProducer::metTag_
private

Definition at line 20 of file DistortedMETProducer.cc.

Referenced by DistortedMETProducer(), and produce().