Skip to content

Commit

Permalink
Merge pull request #19796 from kreczko/kreczko/issue/19592
Browse files Browse the repository at this point in the history
[93X] Improvements to L1 Offline DQM - part 2 (issue #19592)
  • Loading branch information
cmsbuild committed Aug 14, 2017
2 parents 51634f1 + f362690 commit 6ab7ce3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -44,7 +44,7 @@
"L1TStage2CaloLayer2Offline",
electronCollection=cms.InputTag("gedGsfElectrons"),
caloJetCollection=cms.InputTag("ak4CaloJets"),
caloMETCollection=cms.InputTag("caloMet"),
caloMETCollection=cms.InputTag("caloMetBE"),
# MET collection including HF
caloETMHFCollection=cms.InputTag("caloMet"),
conversionsCollection=cms.InputTag("allConversions"),
Expand Down
3 changes: 1 addition & 2 deletions DQMOffline/L1Trigger/src/L1TStage2CaloLayer2Offline.cc
Expand Up @@ -182,7 +182,7 @@ void L1TStage2CaloLayer2Offline::fillEnergySums(edm::Event const& e, const unsig
double recoETMHFPhi(caloETMHFs->front().phi());
double recoMHT(0);
double recoMHTPhi(0);
double recoETT(0);
double recoETT(caloMETs->front().sumEt());
double recoHTT(0);

TVector2 mht(0., 0.);
Expand All @@ -200,7 +200,6 @@ void L1TStage2CaloLayer2Offline::fillEnergySums(edm::Event const& e, const unsig
mht -= jetVec;
}
}
recoETT = recoHTT;
recoMHT = mht.Mod();
// phi in cms is defined between -pi and pi
recoMHTPhi = TVector2::Phi_mpi_pi(mht.Phi());
Expand Down

0 comments on commit 6ab7ce3

Please sign in to comment.