CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonMETcorrInputProducer.cc
Go to the documentation of this file.
2 
9 
11  : moduleLabel_(cfg.getParameter<std::string>("@module_label"))
12 {
13  src_ = cfg.getParameter<edm::InputTag>("src");
14 
15  srcMuonCorrections_ = cfg.getParameter<edm::InputTag>("srcMuonCorrections");
16 
17  produces<CorrMETData>();
18 }
19 
21 {
22 // nothing to be done yet...
23 }
24 
26 {
27  std::auto_ptr<CorrMETData> unclEnergySum(new CorrMETData());
28 
30  evt.getByLabel(src_, muons);
31 
32  typedef edm::ValueMap<reco::MuonMETCorrectionData> MuonMETCorrectionMap;
33  edm::Handle<MuonMETCorrectionMap> muonCorrections;
34  evt.getByLabel(srcMuonCorrections_, muonCorrections);
35 
36 //--- sum muon corrections.
37 //
38 // NOTE: MET = -(jets + muon corrections + "unclustered energy"),
39 // so "unclustered energy" = -(MET + jets + muons),
40 // i.e. muon corrections enter the sum of "unclustered energy" with negative sign.
41 //
42  int numMuons = muons->size();
43  for ( int muonIndex = 0; muonIndex < numMuons; ++muonIndex ) {
44  const reco::Muon& muon = muons->at(muonIndex);
45 
46  reco::MuonRef muonRef(muons, muonIndex);
47 
48  reco::MuonMETCorrectionData muonCorrection = (*muonCorrections)[muonRef];
49  if ( muonCorrection.type() != reco::MuonMETCorrectionData::NotUsed ) {
50  unclEnergySum->mex -= muon.px();
51  unclEnergySum->mey -= muon.py();
52  unclEnergySum->sumet -= muon.pt();
53  }
54  }
55 
56 //--- add sum of muon corrections to the event
57  evt.put(unclEnergySum);
58 }
59 
61 
T getParameter(std::string const &) const
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
void produce(edm::Event &, const edm::EventSetup &)
MuonMETcorrInputProducer(const edm::ParameterSet &)
tuple numMuons
Definition: patZpeak.py:40
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
virtual double px() const
x coordinate of momentum vector
virtual double pt() const
transverse momentum
a MET correction term
Definition: CorrMETData.h:14
tuple muons
Definition: patZpeak.py:38
virtual double py() const
y coordinate of momentum vector