CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
L1TPFMetNoMuProducer Class Reference

#include <L1TPFMetNoMuProducer.h>

Inheritance diagram for L1TPFMetNoMuProducer:
edm::stream::EDProducer<>

Public Member Functions

 L1TPFMetNoMuProducer (const edm::ParameterSet &ps)
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Private Member Functions

void produce (edm::Event &event, const edm::EventSetup &eventSetup) override
 

Private Attributes

const edm::EDGetTokenT< reco::MuonCollectiontheMuonCollection_
 
const edm::EDGetTokenT< reco::PFMETCollectionthePFMETCollection_
 

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 15 of file L1TPFMetNoMuProducer.h.

Constructor & Destructor Documentation

◆ L1TPFMetNoMuProducer()

L1TPFMetNoMuProducer::L1TPFMetNoMuProducer ( const edm::ParameterSet ps)
explicit

Definition at line 6 of file L1TPFMetNoMuProducer.cc.

7  : thePFMETCollection_(consumes<reco::PFMETCollection>(ps.getParameter<edm::InputTag>("pfMETCollection"))),
8  theMuonCollection_(consumes<reco::MuonCollection>(ps.getParameter<edm::InputTag>("muonCollection"))) {
9  produces<reco::PFMETCollection>();
10 }

Member Function Documentation

◆ produce()

void L1TPFMetNoMuProducer::produce ( edm::Event event,
const edm::EventSetup eventSetup 
)
overrideprivate

Definition at line 12 of file L1TPFMetNoMuProducer.cc.

12  {
14  event.getByToken(thePFMETCollection_, pfMet);
15 
17  event.getByToken(theMuonCollection_, muons);
18 
19  if (!pfMet.isValid()) {
20  edm::LogWarning("L1TPFMetNoMuProducer") << "invalid collection for pfMet" << std::endl;
21  return;
22  }
23  if (!muons.isValid()) {
24  edm::LogWarning("L1TPFMetNoMuProducer") << "invalid collection for muons" << std::endl;
25  return;
26  }
27 
28  reco::PFMET thePFMetNoMu = pfMet.product()->front();
29  double pfMetNoMuPx = thePFMetNoMu.px();
30  double pfMetNoMuPy = thePFMetNoMu.py();
31 
32  double muPx(0.), muPy(0.);
33 
34  for (auto muon = muons->begin(); muon != muons->end(); ++muon) {
35  if (muon->isPFMuon()) {
36  muPx += muon->px();
37  muPy += muon->py();
38  }
39  }
40 
41  pfMetNoMuPx += muPx;
42  pfMetNoMuPy += muPy;
43  math::XYZTLorentzVector pfMetNoMuP4(pfMetNoMuPx, pfMetNoMuPy, 0, hypot(pfMetNoMuPx, pfMetNoMuPy));
44 
45  thePFMetNoMu.setP4(pfMetNoMuP4);
46 
47  std::unique_ptr<reco::PFMETCollection> product(new reco::PFMETCollection);
48  product->emplace_back(thePFMetNoMu.getSpecific(), thePFMetNoMu.sumEt(), thePFMetNoMu.p4(), thePFMetNoMu.vertex());
49 
50  event.put(std::move(product));
51 }

References reco::PFMET::getSpecific(), eostools::move(), HLT_FULL_cff::muon, PDWG_BPHSkim_cff::muons, reco::LeafCandidate::p4(), RecoPFMET_cff::pfMet, reco::LeafCandidate::px(), reco::LeafCandidate::py(), reco::LeafCandidate::setP4(), reco::MET::sumEt(), theMuonCollection_, thePFMETCollection_, and reco::LeafCandidate::vertex().

Member Data Documentation

◆ theMuonCollection_

const edm::EDGetTokenT<reco::MuonCollection> L1TPFMetNoMuProducer::theMuonCollection_
private

Definition at line 23 of file L1TPFMetNoMuProducer.h.

Referenced by produce().

◆ thePFMETCollection_

const edm::EDGetTokenT<reco::PFMETCollection> L1TPFMetNoMuProducer::thePFMETCollection_
private

Definition at line 22 of file L1TPFMetNoMuProducer.h.

Referenced by produce().

PDWG_BPHSkim_cff.muons
muons
Definition: PDWG_BPHSkim_cff.py:47
reco::PFMETCollection
std::vector< reco::PFMET > PFMETCollection
collection of PFMET objects
Definition: PFMETCollection.h:20
muon
Definition: MuonCocktails.h:17
reco::PFMET::getSpecific
SpecificPFMETData getSpecific() const
Definition: PFMET.h:74
reco::MET::sumEt
double sumEt() const
Definition: MET.h:56
edm::Handle< reco::PFMETCollection >
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
reco::LeafCandidate::py
double py() const final
y coordinate of momentum vector
Definition: LeafCandidate.h:142
HLT_FULL_cff.muon
muon
Definition: HLT_FULL_cff.py:11710
RecoPFMET_cff.pfMet
pfMet
Definition: RecoPFMET_cff.py:15
L1TPFMetNoMuProducer::theMuonCollection_
const edm::EDGetTokenT< reco::MuonCollection > theMuonCollection_
Definition: L1TPFMetNoMuProducer.h:23
reco::PFMET
Definition: PFMET.h:18
reco::LeafCandidate::p4
const LorentzVector & p4() const final
four-momentum Lorentz vector
Definition: LeafCandidate.h:114
reco::LeafCandidate::vertex
const Point & vertex() const override
vertex position (overwritten by PF...)
Definition: LeafCandidate.h:165
reco::LeafCandidate::setP4
void setP4(const LorentzVector &p4) final
set 4-momentum
Definition: LeafCandidate.h:158
eostools.move
def move(src, dest)
Definition: eostools.py:511
math::XYZTLorentzVector
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
L1TPFMetNoMuProducer::thePFMETCollection_
const edm::EDGetTokenT< reco::PFMETCollection > thePFMETCollection_
Definition: L1TPFMetNoMuProducer.h:22
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
reco::LeafCandidate::px
double px() const final
x coordinate of momentum vector
Definition: LeafCandidate.h:140
edm::InputTag
Definition: InputTag.h:15