CMS 3D CMS Logo

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

#include <PFClusterMETProducer.h>

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

Public Member Functions

 PFClusterMETProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~PFClusterMETProducer () 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 35 of file PFClusterMETProducer.h.

Constructor & Destructor Documentation

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

Definition at line 33 of file PFClusterMETProducer.cc.

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

35  , globalThreshold_(iConfig.getParameter<double>("globalThreshold"))
36  {
37  std::string alias = iConfig.exists("alias") ? iConfig.getParameter<std::string>("alias") : "";
38  produces<reco::PFClusterMETCollection>().setBranchAlias(alias);
39  }
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::PFClusterMETProducer::~PFClusterMETProducer ( )
inlineoverride

Definition at line 39 of file PFClusterMETProducer.h.

References produce().

39 { }

Member Function Documentation

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

Definition at line 43 of file PFClusterMETProducer.cc.

References PFClusterSpecificAlgo::addInfo(), patPFMETCorrections_cff::algo, DEFINE_FWK_MODULE, globalThreshold_, input, inputToken_, eostools::move(), edm::Handle< T >::product(), and METAlgo::run().

Referenced by ~PFClusterMETProducer().

44  {
46  event.getByToken(inputToken_, input);
47 
48  METAlgo algo;
49  CommonMETData commonMETdata = algo.run(*input.product(), globalThreshold_);
50 
51  PFClusterSpecificAlgo pfcluster;
52  auto pfclustermetcoll = std::make_unique<reco::PFClusterMETCollection>();
53 
54  pfclustermetcoll->push_back(pfcluster.addInfo(input, commonMETdata));
55  event.put(std::move(pfclustermetcoll));
56  }
reco::PFClusterMET addInfo(edm::Handle< edm::View< reco::Candidate > > PFClusterCandidates, const CommonMETData &met)
static std::string const input
Definition: EdmProvDump.cc:48
CommonMETData run(const edm::View< reco::Candidate > &candidates, double globalThreshold=0.0)
Definition: METAlgo.cc:16
Structure containing data common to all types of MET.
Definition: CommonMETData.h:12
T const * product() const
Definition: Handle.h:74
def move(src, dest)
Definition: eostools.py:511
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_

Member Data Documentation

double cms::PFClusterMETProducer::globalThreshold_
private

Definition at line 46 of file PFClusterMETProducer.h.

Referenced by produce().

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

Definition at line 44 of file PFClusterMETProducer.h.

Referenced by produce().