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
ShiftedParticleMETcorrInputProducer Class Reference

#include <ShiftedParticleMETcorrInputProducer.h>

Inheritance diagram for ShiftedParticleMETcorrInputProducer:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 ShiftedParticleMETcorrInputProducer (const edm::ParameterSet &)
 
 ~ShiftedParticleMETcorrInputProducer ()
 
- 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

std::string moduleLabel_
 
edm::InputTag srcOriginal_
 
edm::InputTag srcShifted_
 

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

Propagate energy variations of electrons/muons/tau-jets to MET

Author
Christian Veelken, LLR
Version
Revision:
1.1
Id:
ShiftedParticleMETcorrInputProducer.h,v 1.1 2011/10/14 11:18:24 veelken Exp

Definition at line 27 of file ShiftedParticleMETcorrInputProducer.h.

Constructor & Destructor Documentation

ShiftedParticleMETcorrInputProducer::ShiftedParticleMETcorrInputProducer ( const edm::ParameterSet cfg)
explicit

Definition at line 6 of file ShiftedParticleMETcorrInputProducer.cc.

References edm::ParameterSet::getParameter(), srcOriginal_, and srcShifted_.

7  : moduleLabel_(cfg.getParameter<std::string>("@module_label"))
8 {
9  srcOriginal_ = cfg.getParameter<edm::InputTag>("srcOriginal");
10  srcShifted_ = cfg.getParameter<edm::InputTag>("srcShifted");
11 
12  produces<CorrMETData>();
13 }
T getParameter(std::string const &) const
ShiftedParticleMETcorrInputProducer::~ShiftedParticleMETcorrInputProducer ( )

Definition at line 15 of file ShiftedParticleMETcorrInputProducer.cc.

16 {
17 // nothing to be done yet...
18 }

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 20 of file ShiftedParticleMETcorrInputProducer.cc.

References edm::Event::getByLabel(), edm::Event::put(), srcOriginal_, and srcShifted_.

21 {
23 
24  edm::Handle<CandidateView> originalParticles;
25  evt.getByLabel(srcOriginal_, originalParticles);
26 
27  edm::Handle<CandidateView> shiftedParticles;
28  evt.getByLabel(srcShifted_, shiftedParticles);
29 
30  std::auto_ptr<CorrMETData> metCorrection(new CorrMETData());
31 
32  for ( CandidateView::const_iterator originalParticle = originalParticles->begin();
33  originalParticle != originalParticles->end(); ++originalParticle ) {
34  metCorrection->mex += originalParticle->px();
35  metCorrection->mey += originalParticle->py();
36  metCorrection->sumet += originalParticle->et();
37  }
38 
39  for ( CandidateView::const_iterator shiftedParticle = shiftedParticles->begin();
40  shiftedParticle != shiftedParticles->end(); ++shiftedParticle ) {
41  metCorrection->mex -= shiftedParticle->px();
42  metCorrection->mey -= shiftedParticle->py();
43  metCorrection->sumet -= shiftedParticle->et();
44  }
45 
46  evt.put(metCorrection);
47 }
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
a MET correction term
Definition: CorrMETData.h:14
edm::View< Candidate > CandidateView
view of a collection containing candidates
Definition: CandidateFwd.h:23

Member Data Documentation

std::string ShiftedParticleMETcorrInputProducer::moduleLabel_
private
edm::InputTag ShiftedParticleMETcorrInputProducer::srcOriginal_
private
edm::InputTag ShiftedParticleMETcorrInputProducer::srcShifted_
private