CMS 3D CMS Logo

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

This produces a reco::MET object that stores MHT (or MET) More...

#include <HLTMhtProducer.h>

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

Public Member Functions

 HLTMhtProducer (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 ~HLTMhtProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Attributes

bool excludePFMuons_
 
edm::InputTag jetsLabel_
 Input jet, PFCandidate collections. More...
 
edm::EDGetTokenT< reco::JetViewm_theJetToken
 
edm::EDGetTokenT< reco::PFCandidateCollectionm_thePFCandidateToken
 
double maxEtaJet_
 Maximum (abs) eta requirement for jets. More...
 
int minNJet_
 Minimum number of jets passing pt and eta requirements. More...
 
double minPtJet_
 Minimum pt requirement for jets. More...
 
edm::InputTag pfCandidatesLabel_
 
bool usePt_
 Use pt; otherwise, use et. More...
 

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

This produces a reco::MET object that stores MHT (or MET)

Author
Steven Lowette
Michele de Gruttola, Jia Fu Low (Nov 2013)

MHT (or MET) is calculated using input CaloJet or PFJet collection. MHT can include or exclude the contribution from muons.

See header file for documentation

Author
Steven Lowette

Definition at line 34 of file HLTMhtProducer.h.

Constructor & Destructor Documentation

HLTMhtProducer::HLTMhtProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 18 of file HLTMhtProducer.cc.

References excludePFMuons_, jetsLabel_, edm::InputTag::label(), m_theJetToken, m_thePFCandidateToken, pfCandidatesLabel_, and ~HLTMhtProducer().

18  :
19  usePt_ ( iConfig.getParameter<bool>("usePt") ),
20  excludePFMuons_ ( iConfig.getParameter<bool>("excludePFMuons") ),
21  minNJet_ ( iConfig.getParameter<int>("minNJet") ),
22  minPtJet_ ( iConfig.getParameter<double>("minPtJet") ),
23  maxEtaJet_ ( iConfig.getParameter<double>("maxEtaJet") ),
24  jetsLabel_ ( iConfig.getParameter<edm::InputTag>("jetsLabel") ),
25  pfCandidatesLabel_ ( iConfig.getParameter<edm::InputTag>("pfCandidatesLabel") ) {
26  m_theJetToken = consumes<edm::View<reco::Jet>>(jetsLabel_);
27  if (pfCandidatesLabel_.label() == "") excludePFMuons_ = false;
28  if (excludePFMuons_) m_thePFCandidateToken = consumes<reco::PFCandidateCollection>(pfCandidatesLabel_);
29 
30  // Register the products
31  produces<reco::METCollection>();
32 }
T getParameter(std::string const &) const
int minNJet_
Minimum number of jets passing pt and eta requirements.
edm::EDGetTokenT< reco::PFCandidateCollection > m_thePFCandidateToken
edm::EDGetTokenT< reco::JetView > m_theJetToken
double maxEtaJet_
Maximum (abs) eta requirement for jets.
edm::InputTag jetsLabel_
Input jet, PFCandidate collections.
edm::InputTag pfCandidatesLabel_
double minPtJet_
Minimum pt requirement for jets.
bool usePt_
Use pt; otherwise, use et.
std::string const & label() const
Definition: InputTag.h:36
HLTMhtProducer::~HLTMhtProducer ( )
overridedefault

Referenced by HLTMhtProducer().

Member Function Documentation

void HLTMhtProducer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 38 of file HLTMhtProducer.cc.

References edm::ConfigurationDescriptions::add(), and edm::ParameterSetDescription::add().

38  {
39  // Current default is for hltPFMET
41  desc.add<bool>("usePt", true);
42  desc.add<bool>("excludePFMuons", false);
43  desc.add<int>("minNJet",0);
44  desc.add<double>("minPtJet", 0.);
45  desc.add<double>("maxEtaJet", 999.);
46  desc.add<edm::InputTag>("jetsLabel", edm::InputTag("hltAntiKT4PFJets"));
47  desc.add<edm::InputTag>("pfCandidatesLabel", edm::InputTag("hltParticleFlow"));
48  descriptions.add("hltMhtProducer", desc);
49 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void HLTMhtProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 52 of file HLTMhtProducer.cc.

References funct::abs(), edm::View< T >::begin(), funct::cos(), edm::View< T >::empty(), edm::View< T >::end(), PVValHelper::eta, excludePFMuons_, edm::Event::getByToken(), fwrapper::jets, m_theJetToken, m_thePFCandidateToken, maxEtaJet_, minNJet_, minPtJet_, eostools::move(), p4, patMuonMerger_cfi::pfCandidates, phi, EnergyCorrector::pt, edm::Event::put(), mps_fire::result, funct::sin(), mathSSE::sqrt(), usePt_, and extraflags_cff::vtx.

52  {
53 
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_) { sumet = 0; mhx = 0; mhy = 0; }
94 
95  reco::MET::LorentzVector p4(mhx, mhy, 0, sqrt(mhx*mhx + mhy*mhy));
96  reco::MET::Point vtx(0, 0, 0);
97  reco::MET mht(sumet, p4, vtx);
98  result->push_back(mht);
99 
100  // Put the products into the Event
101  iEvent.put(std::move(result));
102 }
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:125
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:517
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
std::vector< reco::MET > METCollection
collection of MET objects
Definition: METCollection.h:23
const_iterator begin() const
Definition: MET.h:42
T sqrt(T t)
Definition: SSEVec.h:18
double p4[4]
Definition: TauolaWrapper.h:92
vector< PseudoJet > jets
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.
bool usePt_
Use pt; otherwise, use et.
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
math::XYZPoint Point
point in the space
Definition: Candidate.h:41
const_iterator end() const
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

bool HLTMhtProducer::excludePFMuons_
private

Exclude PF muons in the MHT calculation (but not HT) Ignored if pfCandidatesLabel_ is empty.

Definition at line 47 of file HLTMhtProducer.h.

Referenced by HLTMhtProducer(), and produce().

edm::InputTag HLTMhtProducer::jetsLabel_
private

Input jet, PFCandidate collections.

Definition at line 59 of file HLTMhtProducer.h.

Referenced by HLTMhtProducer().

edm::EDGetTokenT<reco::JetView> HLTMhtProducer::m_theJetToken
private

Definition at line 62 of file HLTMhtProducer.h.

Referenced by HLTMhtProducer(), and produce().

edm::EDGetTokenT<reco::PFCandidateCollection> HLTMhtProducer::m_thePFCandidateToken
private

Definition at line 63 of file HLTMhtProducer.h.

Referenced by HLTMhtProducer(), and produce().

double HLTMhtProducer::maxEtaJet_
private

Maximum (abs) eta requirement for jets.

Definition at line 56 of file HLTMhtProducer.h.

Referenced by produce().

int HLTMhtProducer::minNJet_
private

Minimum number of jets passing pt and eta requirements.

Definition at line 50 of file HLTMhtProducer.h.

Referenced by produce().

double HLTMhtProducer::minPtJet_
private

Minimum pt requirement for jets.

Definition at line 53 of file HLTMhtProducer.h.

Referenced by produce().

edm::InputTag HLTMhtProducer::pfCandidatesLabel_
private

Definition at line 60 of file HLTMhtProducer.h.

Referenced by HLTMhtProducer().

bool HLTMhtProducer::usePt_
private

Use pt; otherwise, use et.

Definition at line 43 of file HLTMhtProducer.h.

Referenced by produce().