CMS 3D CMS Logo

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 () override
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void beginJob () override
 
void endJob () override
 
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
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
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)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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(), 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 ( )
override

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

Definition at line 56 of file DistortedMETProducer.cc.

References funct::cos(), DEFINE_FWK_MODULE, reco::LeafCandidate::et(), edm::Event::getByToken(), edm::EventBase::isRealData(), RazorAnalyzer::met, nanoDQM_cfi::MET, MT2Analyzer::metCollection, metScaleShift_, metToken_, eostools::move(), 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::unique_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(std::move(newmetCollection));
82 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
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:62
double sumEt() const
Definition: MET.h:56
double et() const final
transverse energy
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_
met
===> hadronic RAZOR
double phi() const final
momentum azimuthal angle
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21
def move(src, dest)
Definition: eostools.py:511

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