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::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 DistortedMETProducer (const edm::ParameterSet &)
 
 ~DistortedMETProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

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

Private Attributes

double metScaleShift_
 
edm::InputTag metTag_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- 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)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

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  )
overrideprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 48 of file DistortedMETProducer.cc.

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

Reimplemented from edm::EDProducer.

Definition at line 52 of file DistortedMETProducer.cc.

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

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 JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::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 GCC11_FINAL
transverse energy
tuple met
____________________________________________________________________________||
Definition: CaloMET_cfi.py:7
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 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
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:27

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().