CMS 3D CMS Logo

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

#include <GenMETProducer.h>

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

Public Member Functions

 GenMETProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~GenMETProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Attributes

bool applyFiducialThresholdForFractions_
 
double globalThreshold_
 
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
 
bool onlyFiducial_
 
bool usePt_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Definition at line 35 of file GenMETProducer.h.

Constructor & Destructor Documentation

◆ GenMETProducer()

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

Definition at line 29 of file GenMETProducer.cc.

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

31  globalThreshold_(iConfig.getParameter<double>("globalThreshold")),
32  onlyFiducial_(iConfig.getParameter<bool>("onlyFiducialParticles")),
33  applyFiducialThresholdForFractions_(iConfig.getParameter<bool>("applyFiducialThresholdForFractions")),
34  usePt_(iConfig.getParameter<bool>("usePt")) {
35  std::string alias = iConfig.exists("alias") ? iConfig.getParameter<std::string>("alias") : "";
36  produces<reco::GenMETCollection>().setBranchAlias(alias);
37  }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
bool exists(std::string const &parameterName) const
checks if a parameter exists
bool applyFiducialThresholdForFractions_

◆ ~GenMETProducer()

cms::GenMETProducer::~GenMETProducer ( )
inlineoverride

Definition at line 38 of file GenMETProducer.h.

38 {}

Member Function Documentation

◆ produce()

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

Definition at line 40 of file GenMETProducer.cc.

References applyFiducialThresholdForFractions_, relval_steps::gen(), globalThreshold_, input, inputToken_, eostools::move(), onlyFiducial_, and usePt_.

40  {
42  event.getByToken(inputToken_, input);
43 
44  CommonMETData commonMETdata;
45 
47  auto genmetcoll = std::make_unique<reco::GenMETCollection>();
48  genmetcoll->push_back(gen.addInfo(
50  event.put(std::move(genmetcoll));
51  }
edm::EDGetTokenT< edm::View< reco::Candidate > > inputToken_
static std::string const input
Definition: EdmProvDump.cc:50
bool applyFiducialThresholdForFractions_
Structure containing data common to all types of MET.
Definition: CommonMETData.h:12
def gen(fragment, howMuch)
Production test section ####.
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

◆ applyFiducialThresholdForFractions_

bool cms::GenMETProducer::applyFiducialThresholdForFractions_
private

Definition at line 48 of file GenMETProducer.h.

Referenced by produce().

◆ globalThreshold_

double cms::GenMETProducer::globalThreshold_
private

Definition at line 44 of file GenMETProducer.h.

Referenced by produce().

◆ inputToken_

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

Definition at line 42 of file GenMETProducer.h.

Referenced by produce().

◆ onlyFiducial_

bool cms::GenMETProducer::onlyFiducial_
private

Definition at line 46 of file GenMETProducer.h.

Referenced by produce().

◆ usePt_

bool cms::GenMETProducer::usePt_
private

Definition at line 50 of file GenMETProducer.h.

Referenced by produce().