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
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 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
std::vector< ConsumesInfoconsumesInfo () const
 
 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
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) 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::EDGetTokenT< edm::View
< reco::MET > > 
metToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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::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 13 of file DistortedMETProducer.cc.

Constructor & Destructor Documentation

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

Definition at line 32 of file DistortedMETProducer.cc.

References edm::ParameterSet::getUntrackedParameter(), HLT_25ns14e33_v1_cff::InputTag, metScaleShift_, and metToken_.

32  {
33 
34  // What is being produced
35  produces<std::vector<reco::MET> >();
36 
37  // Input products
38  metToken_ = consumes<edm::View<reco::MET> >(pset.getUntrackedParameter<edm::InputTag> ("MetTag", edm::InputTag("met")));
39  // Distortions in MET in Gev**{-1/2}
40  metScaleShift_ = pset.getUntrackedParameter<double> ("MetScaleShift",1.e-3);
41 
42 }
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< edm::View< reco::MET > > metToken_
DistortedMETProducer::~DistortedMETProducer ( )

Definition at line 45 of file DistortedMETProducer.cc.

45  {
46 }

Member Function Documentation

void DistortedMETProducer::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 49 of file DistortedMETProducer.cc.

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

Reimplemented from edm::EDProducer.

Definition at line 53 of file DistortedMETProducer.cc.

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

Implements edm::EDProducer.

Definition at line 56 of file DistortedMETProducer.cc.

References funct::cos(), reco::LeafCandidate::et(), edm::Event::getByToken(), edm::EventBase::isRealData(), objects.METAnalyzer::met, HLT_25ns14e33_v3_cff::MET, objects.METAnalyzer::metCollection, metScaleShift_, metToken_, reco::LeafCandidate::phi(), edm::Event::put(), funct::sin(), and reco::MET::sumEt().

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

56  {
57 
58  if (ev.isRealData()) return;
59 
60  // MET collection
62  if (!ev.getByToken(metToken_, metCollection)) {
63  edm::LogError("") << ">>> MET collection does not exist !!!";
64  return;
65  }
66  edm::RefToBase<reco::MET> met = metCollection->refAt(0);
67 
68  std::auto_ptr<reco::METCollection> newmetCollection (new reco::METCollection);
69 
70  double met_et = met->et() * (1. + metScaleShift_);
71  double sum_et = met->sumEt() * (1. + metScaleShift_);
72  double met_phi = met->phi();
73  double met_ex = met_et*cos(met_phi);
74  double met_ey = met_et*sin(met_phi);
75  reco::Particle::LorentzVector met_p4(met_ex, met_ey, 0., met_et);
76  reco::Particle::Point met_vtx(0.,0.,0.);
77  reco::MET* newmet = new reco::MET(sum_et, met_p4, met_vtx);
78 
79  newmetCollection->push_back(*newmet);
80 
81  ev.put(newmetCollection);
82 }
virtual double et() const
transverse energy
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
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:64
double sumEt() const
Definition: MET.h:56
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:115
Definition: MET.h:42
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
math::XYZPoint Point
point in the space
Definition: Particle.h:25
edm::EDGetTokenT< edm::View< reco::MET > > metToken_
virtual double phi() const
momentum azimuthal angle
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21

Member Data Documentation

double DistortedMETProducer::metScaleShift_
private

Definition at line 24 of file DistortedMETProducer.cc.

Referenced by DistortedMETProducer(), and produce().

edm::EDGetTokenT<edm::View<reco::MET> > DistortedMETProducer::metToken_
private

Definition at line 23 of file DistortedMETProducer.cc.

Referenced by DistortedMETProducer(), and produce().