CMS 3D CMS Logo

L1TPFMetNoMuProducer.cc
Go to the documentation of this file.
5 
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 }
11 
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 }
52 
MPlex< T, D1, D2, N > hypot(const MPlex< T, D1, D2, N > &a, const MPlex< T, D1, D2, N > &b)
Definition: Matriplex.h:436
void produce(edm::Event &event, const edm::EventSetup &eventSetup) override
double sumEt() const
Definition: MET.h:56
const Point & vertex() const override
vertex position (overwritten by PF...)
muons
the two sets of parameters below are mutually exclusive, depending if RECO or ALCARECO is used the us...
Definition: DiMuonV_cfg.py:214
const LorentzVector & p4() const final
four-momentum Lorentz vector
std::vector< Muon > MuonCollection
collection of Muon objects
Definition: MuonFwd.h:9
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
double px() const final
x coordinate of momentum vector
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
double py() const final
y coordinate of momentum vector
const edm::EDGetTokenT< reco::MuonCollection > theMuonCollection_
const edm::EDGetTokenT< reco::PFMETCollection > thePFMETCollection_
SpecificPFMETData getSpecific() const
Definition: PFMET.h:74
fixed size matrix
HLT enums.
std::vector< reco::PFMET > PFMETCollection
collection of PFMET objects
Log< level::Warning, false > LogWarning
L1TPFMetNoMuProducer(const edm::ParameterSet &ps)
void setP4(const LorentzVector &p4) final
set 4-momentum
def move(src, dest)
Definition: eostools.py:511
Definition: event.py:1
Collection of PF MET.