CMS 3D CMS Logo

HLTHtMhtProducer.cc
Go to the documentation of this file.
1 
10 
15 
18 
19 // Constructor
21  : usePt_(iConfig.getParameter<bool>("usePt")),
22  excludePFMuons_(iConfig.getParameter<bool>("excludePFMuons")),
23  minNJetHt_(iConfig.getParameter<int>("minNJetHt")),
24  minNJetMht_(iConfig.getParameter<int>("minNJetMht")),
25  minPtJetHt_(iConfig.getParameter<double>("minPtJetHt")),
26  minPtJetMht_(iConfig.getParameter<double>("minPtJetMht")),
27  maxEtaJetHt_(iConfig.getParameter<double>("maxEtaJetHt")),
28  maxEtaJetMht_(iConfig.getParameter<double>("maxEtaJetMht")),
29  jetsLabel_(iConfig.getParameter<edm::InputTag>("jetsLabel")),
30  pfCandidatesLabel_(iConfig.getParameter<edm::InputTag>("pfCandidatesLabel")) {
31  m_theJetToken = consumes<reco::CandidateView>(jetsLabel_);
32  m_thePFCandidateToken = consumes<reco::PFCandidateCollection>(pfCandidatesLabel_);
33 
34  // Register the products
35  produces<reco::METCollection>();
36 }
37 
38 // Destructor
40 
41 // Fill descriptions
43  // Current default is for hltHtMht
45  desc.add<bool>("usePt", false);
46  desc.add<bool>("excludePFMuons", false);
47  desc.add<int>("minNJetHt", 0);
48  desc.add<int>("minNJetMht", 0);
49  desc.add<double>("minPtJetHt", 40.);
50  desc.add<double>("minPtJetMht", 30.);
51  desc.add<double>("maxEtaJetHt", 3.);
52  desc.add<double>("maxEtaJetMht", 5.);
53  desc.add<edm::InputTag>("jetsLabel", edm::InputTag("hltCaloJetL1FastJetCorrected"));
54  desc.add<edm::InputTag>("pfCandidatesLabel", edm::InputTag("hltParticleFlow"));
55  descriptions.add("hltHtMhtProducer", desc);
56 }
57 
58 // Produce the products
60  // Create a pointer to the products
61  std::unique_ptr<reco::METCollection> result(new reco::METCollection());
62 
63  if (pfCandidatesLabel_.label().empty())
64  excludePFMuons_ = false;
65 
67  iEvent.getByToken(m_theJetToken, jets);
68 
70  if (excludePFMuons_)
72 
73  int nj_ht = 0, nj_mht = 0;
74  double ht = 0., mhx = 0., mhy = 0.;
75 
76  for (auto const& aJet : *jets) {
77  double const pt = usePt_ ? aJet.pt() : aJet.et();
78  double const eta = aJet.eta();
79  double const phi = aJet.phi();
80  double const px = usePt_ ? aJet.px() : aJet.et() * cos(phi);
81  double const py = usePt_ ? aJet.py() : aJet.et() * sin(phi);
82 
83  if (pt > minPtJetHt_ && std::abs(eta) < maxEtaJetHt_) {
84  ht += pt;
85  ++nj_ht;
86  }
87 
89  mhx -= px;
90  mhy -= py;
91  ++nj_mht;
92  }
93  }
94 
95  if (excludePFMuons_) {
96  for (auto const& aCand : *pfCandidates) {
97  if (std::abs(aCand.pdgId()) == 13) {
98  mhx += aCand.px();
99  mhy += aCand.py();
100  }
101  }
102  }
103 
104  if (nj_ht < minNJetHt_) {
105  ht = 0;
106  }
107  if (nj_mht < minNJetMht_) {
108  mhx = 0;
109  mhy = 0;
110  }
111 
112  reco::MET::LorentzVector p4(mhx, mhy, 0, sqrt(mhx * mhx + mhy * mhy));
113  reco::MET::Point vtx(0, 0, 0);
114  reco::MET htmht(ht, p4, vtx);
115  result->push_back(htmht);
116 
117  // Put the products into the Event
118  iEvent.put(std::move(result));
119 }
ConfigurationDescriptions.h
Handle.h
zmumugammaAnalyzer_cfi.pfCandidates
pfCandidates
Definition: zmumugammaAnalyzer_cfi.py:11
electrons_cff.bool
bool
Definition: electrons_cff.py:372
edm::ParameterSetDescription::add
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:95
MessageLogger.h
HLTHtMhtProducer::produce
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
Definition: HLTHtMhtProducer.cc:59
DiDispStaMuonMonitor_cfi.pt
pt
Definition: DiDispStaMuonMonitor_cfi.py:39
multPhiCorr_741_25nsDY_cfi.py
py
Definition: multPhiCorr_741_25nsDY_cfi.py:12
HLTHtMhtProducer::usePt_
bool usePt_
Use pt; otherwise, use et.
Definition: HLTHtMhtProducer.h:40
edm
HLT enums.
Definition: AlignableModifier.h:19
HLTHtMhtProducer::HLTHtMhtProducer
HLTHtMhtProducer(const edm::ParameterSet &iConfig)
Definition: HLTHtMhtProducer.cc:20
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
HLTHtMhtProducer::m_theJetToken
edm::EDGetTokenT< reco::CandidateView > m_theJetToken
Definition: HLTHtMhtProducer.h:62
singleTopDQM_cfi.jets
jets
Definition: singleTopDQM_cfi.py:42
edm::Handle
Definition: AssociativeIterator.h:50
HLTHtMhtProducer::jetsLabel_
edm::InputTag jetsLabel_
Input jet, PFCandidate collections.
Definition: HLTHtMhtProducer.h:59
funct::sin
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
reco::METCollection
std::vector< reco::MET > METCollection
collection of MET objects
Definition: METCollection.h:22
edm::InputTag::label
std::string const & label() const
Definition: InputTag.h:36
HLTHtMhtProducer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: HLTHtMhtProducer.cc:42
reco::MET
Definition: MET.h:41
HLTHtMhtProducer::minNJetMht_
int minNJetMht_
Definition: HLTHtMhtProducer.h:48
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
PVValHelper::eta
Definition: PVValidationHelpers.h:69
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
HLTHtMhtProducer::pfCandidatesLabel_
edm::InputTag pfCandidatesLabel_
Definition: HLTHtMhtProducer.h:60
ParameterSetDescription.h
HLTHtMhtProducer::excludePFMuons_
bool excludePFMuons_
Definition: HLTHtMhtProducer.h:44
HLTHtMhtProducer::m_thePFCandidateToken
edm::EDGetTokenT< reco::PFCandidateCollection > m_thePFCandidateToken
Definition: HLTHtMhtProducer.h:63
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
badGlobalMuonTaggersAOD_cff.vtx
vtx
Definition: badGlobalMuonTaggersAOD_cff.py:5
HLTHtMhtProducer::minPtJetHt_
double minPtJetHt_
Minimum pt requirement for jets.
Definition: HLTHtMhtProducer.h:51
HLT_2018_cff.InputTag
InputTag
Definition: HLT_2018_cff.py:79016
edm::ParameterSet
Definition: ParameterSet.h:36
HLTHtMhtProducer.h
HLTHtMhtProducer::~HLTHtMhtProducer
~HLTHtMhtProducer() override
createfilelist.int
int
Definition: createfilelist.py:10
iEvent
int iEvent
Definition: GenABIO.cc:224
p4
double p4[4]
Definition: TauolaWrapper.h:92
edm::EventSetup
Definition: EventSetup.h:57
DDAxes::phi
multPhiCorr_741_25nsDY_cfi.px
px
Definition: multPhiCorr_741_25nsDY_cfi.py:10
MET.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
HLTHtMhtProducer::maxEtaJetMht_
double maxEtaJetMht_
Definition: HLTHtMhtProducer.h:56
METFwd.h
HLTHtMhtProducer::minNJetHt_
int minNJetHt_
Minimum number of jets passing pt and eta requirements.
Definition: HLTHtMhtProducer.h:47
mps_fire.result
result
Definition: mps_fire.py:303
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
reco::Candidate::LorentzVector
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:36
reco::Candidate::Point
math::XYZPoint Point
point in the space
Definition: Candidate.h:40
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
HLTHtMhtProducer::minPtJetMht_
double minPtJetMht_
Definition: HLTHtMhtProducer.h:52
HLTHtMhtProducer::maxEtaJetHt_
double maxEtaJetHt_
Maximum (abs) eta requirement for jets.
Definition: HLTHtMhtProducer.h:55