CMS 3D CMS Logo

HLTMhtProducer.cc
Go to the documentation of this file.
1 
10 
15 
16 // Constructor
18  : usePt_(iConfig.getParameter<bool>("usePt")),
19  excludePFMuons_(iConfig.getParameter<bool>("excludePFMuons")),
20  minNJet_(iConfig.getParameter<int>("minNJet")),
21  minPtJet_(iConfig.getParameter<double>("minPtJet")),
22  maxEtaJet_(iConfig.getParameter<double>("maxEtaJet")),
23  jetsLabel_(iConfig.getParameter<edm::InputTag>("jetsLabel")),
24  pfCandidatesLabel_(iConfig.getParameter<edm::InputTag>("pfCandidatesLabel")) {
25  m_theJetToken = consumes<edm::View<reco::Jet>>(jetsLabel_);
26  if (pfCandidatesLabel_.label().empty())
27  excludePFMuons_ = false;
28  if (excludePFMuons_)
29  m_thePFCandidateToken = consumes<reco::PFCandidateCollection>(pfCandidatesLabel_);
30 
31  // Register the products
32  produces<reco::METCollection>();
33 }
34 
35 // Destructor
37 
38 // Fill descriptions
40  // Current default is for hltPFMET
42  desc.add<bool>("usePt", true);
43  desc.add<bool>("excludePFMuons", false);
44  desc.add<int>("minNJet", 0);
45  desc.add<double>("minPtJet", 0.);
46  desc.add<double>("maxEtaJet", 999.);
47  desc.add<edm::InputTag>("jetsLabel", edm::InputTag("hltAntiKT4PFJets"));
48  desc.add<edm::InputTag>("pfCandidatesLabel", edm::InputTag("hltParticleFlow"));
49  descriptions.add("hltMhtProducer", desc);
50 }
51 
52 // Produce the products
54  // Create a pointer to the products
55  std::unique_ptr<reco::METCollection> result(new reco::METCollection());
56 
58  iEvent.getByToken(m_theJetToken, jets);
59 
61  if (excludePFMuons_)
62  iEvent.getByToken(m_thePFCandidateToken, pfCandidates);
63 
64  int nj = 0;
65  double sumet = 0., mhx = 0., mhy = 0.;
66 
67  if (!jets->empty()) {
68  for (reco::JetView::const_iterator j = jets->begin(); j != jets->end(); ++j) {
69  double pt = usePt_ ? j->pt() : j->et();
70  double eta = j->eta();
71  double phi = j->phi();
72  double px = usePt_ ? j->px() : j->et() * cos(phi);
73  double py = usePt_ ? j->py() : j->et() * sin(phi);
74 
75  if (pt > minPtJet_ && std::abs(eta) < maxEtaJet_) {
76  mhx -= px;
77  mhy -= py;
78  sumet += pt;
79  ++nj;
80  }
81  }
82  }
83 
84  if (excludePFMuons_) {
85  for (auto const& j : *pfCandidates) {
86  if (std::abs(j.pdgId()) == 13) {
87  mhx += j.px();
88  mhy += j.py();
89  }
90  }
91  }
92 
93  if (nj < minNJet_) {
94  sumet = 0;
95  mhx = 0;
96  mhy = 0;
97  }
98 
99  reco::MET::LorentzVector p4(mhx, mhy, 0, sqrt(mhx * mhx + mhy * mhy));
100  reco::MET::Point vtx(0, 0, 0);
101  reco::MET mht(sumet, p4, vtx);
102  result->push_back(mht);
103 
104  // Put the products into the Event
105  iEvent.put(std::move(result));
106 }
int minNJet_
Minimum number of jets passing pt and eta requirements.
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::EDGetTokenT< reco::PFCandidateCollection > m_thePFCandidateToken
edm::EDGetTokenT< reco::JetView > m_theJetToken
double maxEtaJet_
Maximum (abs) eta requirement for jets.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
edm::InputTag jetsLabel_
Input jet, PFCandidate collections.
edm::InputTag pfCandidatesLabel_
std::vector< reco::MET > METCollection
collection of MET objects
Definition: METCollection.h:22
int iEvent
Definition: GenABIO.cc:224
const_iterator begin() const
Definition: MET.h:41
T sqrt(T t)
Definition: SSEVec.h:19
double p4[4]
Definition: TauolaWrapper.h:92
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
bool empty() const
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double minPtJet_
Minimum pt requirement for jets.
ParameterDescriptionBase * add(U const &iLabel, T const &value)
bool usePt_
Use pt; otherwise, use et.
void add(std::string const &label, ParameterSetDescription const &psetDescription)
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
std::string const & label() const
Definition: InputTag.h:36
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
HLTMhtProducer(const edm::ParameterSet &iConfig)
math::XYZPoint Point
point in the space
Definition: Candidate.h:41
const_iterator end() const
def move(src, dest)
Definition: eostools.py:511
~HLTMhtProducer() override