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
ScaleCorrMETData Class Reference
Inheritance diagram for ScaleCorrMETData:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 ScaleCorrMETData (const edm::ParameterSet &)
 
 ~ScaleCorrMETData ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &)
 

Private Attributes

edm::InputTag inputLabel_
 
double scaleFactor_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- 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::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 17 of file ScaleCorrMETData.cc.

Constructor & Destructor Documentation

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

Definition at line 33 of file ScaleCorrMETData.cc.

34  : inputLabel_(iConfig.getParameter<edm::InputTag>("src"))
35  , scaleFactor_(iConfig.getParameter<double>("scaleFactor"))
36 
37 {
38  produces<CorrMETData>("");
39 }
T getParameter(std::string const &) const
edm::InputTag inputLabel_
ScaleCorrMETData::~ScaleCorrMETData ( )
inline

Definition at line 21 of file ScaleCorrMETData.cc.

21 { }

Member Function Documentation

void ScaleCorrMETData::produce ( edm::Event evt,
const edm::EventSetup es 
)
privatevirtual

Implements edm::EDProducer.

Definition at line 42 of file ScaleCorrMETData.cc.

References edm::Event::getByLabel(), LaserDQM_cfg::input, inputLabel_, edm::Event::put(), and scaleFactor_.

43 {
44  CorrMETData product;
46  evt.getByLabel(inputLabel_, input);
47  product += scaleFactor_*(*input);
48 
49  std::auto_ptr<CorrMETData> pprod(new CorrMETData(product));
50  evt.put(pprod, "");
51 }
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
edm::InputTag inputLabel_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
a MET correction term
Definition: CorrMETData.h:14

Member Data Documentation

edm::InputTag ScaleCorrMETData::inputLabel_
private

Definition at line 25 of file ScaleCorrMETData.cc.

Referenced by produce().

double ScaleCorrMETData::scaleFactor_
private

Definition at line 26 of file ScaleCorrMETData.cc.

Referenced by produce().