CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTHtMhtProducer.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  minNJetHt_(iConfig.getParameter<int>("minNJetHt")),
21  minNJetMht_(iConfig.getParameter<int>("minNJetMht")),
22  minPtJetHt_(iConfig.getParameter<double>("minPtJetHt")),
23  minPtJetMht_(iConfig.getParameter<double>("minPtJetMht")),
24  maxEtaJetHt_(iConfig.getParameter<double>("maxEtaJetHt")),
25  maxEtaJetMht_(iConfig.getParameter<double>("maxEtaJetMht")),
26  jetsLabel_(iConfig.getParameter<edm::InputTag>("jetsLabel")),
27  pfCandidatesLabel_(iConfig.getParameter<edm::InputTag>("pfCandidatesLabel")) {
28  m_theJetToken = consumes<edm::View<reco::Jet>>(jetsLabel_);
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 hltHtMht
42  desc.add<bool>("usePt", false);
43  desc.add<bool>("excludePFMuons", false);
44  desc.add<int>("minNJetHt", 0);
45  desc.add<int>("minNJetMht", 0);
46  desc.add<double>("minPtJetHt", 40.);
47  desc.add<double>("minPtJetMht", 30.);
48  desc.add<double>("maxEtaJetHt", 3.);
49  desc.add<double>("maxEtaJetMht", 5.);
50  desc.add<edm::InputTag>("jetsLabel", edm::InputTag("hltCaloJetL1FastJetCorrected"));
51  desc.add<edm::InputTag>("pfCandidatesLabel", edm::InputTag("hltParticleFlow"));
52  descriptions.add("hltHtMhtProducer", desc);
53 }
54 
55 // Produce the products
57  // Create a pointer to the products
58  std::unique_ptr<reco::METCollection> result(new reco::METCollection());
59 
60  if (pfCandidatesLabel_.label().empty())
61  excludePFMuons_ = false;
62 
64  iEvent.getByToken(m_theJetToken, jets);
65 
67  if (excludePFMuons_)
68  iEvent.getByToken(m_thePFCandidateToken, pfCandidates);
69 
70  int nj_ht = 0, nj_mht = 0;
71  double ht = 0., mhx = 0., mhy = 0.;
72 
73  if (!jets->empty()) {
74  for (reco::JetView::const_iterator j = jets->begin(); j != jets->end(); ++j) {
75  double pt = usePt_ ? j->pt() : j->et();
76  double eta = j->eta();
77  double phi = j->phi();
78  double px = usePt_ ? j->px() : j->et() * cos(phi);
79  double py = usePt_ ? j->py() : j->et() * sin(phi);
80 
81  if (pt > minPtJetHt_ && std::abs(eta) < maxEtaJetHt_) {
82  ht += pt;
83  ++nj_ht;
84  }
85 
86  if (pt > minPtJetMht_ && std::abs(eta) < maxEtaJetMht_) {
87  mhx -= px;
88  mhy -= py;
89  ++nj_mht;
90  }
91  }
92  }
93 
94  if (excludePFMuons_) {
95  for (auto const& j : *pfCandidates) {
96  if (std::abs(j.pdgId()) == 13) {
97  mhx += j.px();
98  mhy += j.py();
99  }
100  }
101  }
102 
103  if (nj_ht < minNJetHt_) {
104  ht = 0;
105  }
106  if (nj_mht < minNJetMht_) {
107  mhx = 0;
108  mhy = 0;
109  }
110 
111  reco::MET::LorentzVector p4(mhx, mhy, 0, sqrt(mhx * mhx + mhy * mhy));
112  reco::MET::Point vtx(0, 0, 0);
113  reco::MET htmht(ht, p4, vtx);
114  result->push_back(htmht);
115 
116  // Put the products into the Event
117  iEvent.put(std::move(result));
118 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
edm::InputTag pfCandidatesLabel_
edm::EDGetTokenT< reco::PFCandidateCollection > m_thePFCandidateToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
int minNJetHt_
Minimum number of jets passing pt and eta requirements.
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
double minPtJetHt_
Minimum pt requirement for jets.
std::vector< reco::MET > METCollection
collection of MET objects
Definition: METCollection.h:22
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
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
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
double maxEtaJetHt_
Maximum (abs) eta requirement for jets.
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
std::string const & label() const
Definition: InputTag.h:36
bool usePt_
Use pt; otherwise, use et.
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
~HLTHtMhtProducer() override
math::XYZPoint Point
point in the space
Definition: Candidate.h:41
const_iterator end() const
HLTHtMhtProducer(const edm::ParameterSet &iConfig)
edm::InputTag jetsLabel_
Input jet, PFCandidate collections.
def move(src, dest)
Definition: eostools.py:511
edm::EDGetTokenT< reco::JetView > m_theJetToken
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)