CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
cms::ElseMETProducer Class Reference

#include <ElseMETProducer.h>

Inheritance diagram for cms::ElseMETProducer:
edm::stream::EDProducer<>

Public Member Functions

 ElseMETProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~ElseMETProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Attributes

double globalThreshold_
 
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 34 of file ElseMETProducer.h.

Constructor & Destructor Documentation

ElseMETProducer::ElseMETProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 34 of file ElseMETProducer.cc.

References met_cff::alias, edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

36  , globalThreshold_(iConfig.getParameter<double>("globalThreshold"))
37  {
38  std::string alias = iConfig.exists("alias") ? iConfig.getParameter<std::string>("alias") : "";
39 
40  produces<reco::METCollection>().setBranchAlias(alias);
41  }
T getParameter(std::string const &) const
bool exists(std::string const &parameterName) const
checks if a parameter exists
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
cms::ElseMETProducer::~ElseMETProducer ( )
inlineoverride

Definition at line 38 of file ElseMETProducer.h.

References produce().

38 { }

Member Function Documentation

void ElseMETProducer::produce ( edm::Event event,
const edm::EventSetup setup 
)
override

Definition at line 45 of file ElseMETProducer.cc.

References patPFMETCorrections_cff::algo, DEFINE_FWK_MODULE, globalThreshold_, input, inputToken_, CommonMETData::met, RazorAnalyzer::met, CommonMETData::mex, CommonMETData::mey, eostools::move(), p4, edm::Handle< T >::product(), METAlgo::run(), CommonMETData::sumet, and badGlobalMuonTaggersAOD_cff::vtx.

Referenced by ~ElseMETProducer().

46  {
48  event.getByToken(inputToken_, input);
49 
50  METAlgo algo;
51  CommonMETData commonMETdata = algo.run(*input.product(), globalThreshold_);
52 
53  math::XYZTLorentzVector p4(commonMETdata.mex, commonMETdata.mey, 0.0, commonMETdata.met);
54  math::XYZPoint vtx(0,0,0);
55  reco::MET met(commonMETdata.sumet, p4, vtx);
56  auto metcoll = std::make_unique<reco::METCollection>();
57  metcoll->push_back(met);
58  event.put(std::move(metcoll));
59  }
static std::string const input
Definition: EdmProvDump.cc:44
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
CommonMETData run(const edm::View< reco::Candidate > &candidates, double globalThreshold=0.0)
Definition: METAlgo.cc:16
Definition: MET.h:42
double p4[4]
Definition: TauolaWrapper.h:92
Structure containing data common to all types of MET.
Definition: CommonMETData.h:12
T const * product() const
Definition: Handle.h:81
met
===> hadronic RAZOR
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

double cms::ElseMETProducer::globalThreshold_
private

Definition at line 45 of file ElseMETProducer.h.

Referenced by produce().

edm::EDGetTokenT<edm::View<reco::Candidate> > cms::ElseMETProducer::inputToken_
private

Definition at line 43 of file ElseMETProducer.h.

Referenced by produce().