Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Andrea Perrotta <[email protected]>
  • Loading branch information
mmusich and perrotta committed May 19, 2023
1 parent f638f0f commit 8f8abe8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DQM/TrackingMonitor/src/TrackSplittingMonitor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ void TrackSplittingMonitor::analyze(const edm::Event& iEvent, const edm::EventSe
if ((nRechitinBPIX1 >= pixelHitsPerLeg_) && (nRechitinBPIX1 >= pixelHitsPerLeg_) &&
(nRechits1 >= totalHitsPerLeg_) && (nRechits2 >= totalHitsPerLeg_)) {
// dca cut
if (((std::abs(d01) < d0Cut_)) && (std::abs(d02) < d0Cut_) && (std::abs(dz2) < dzCut_) &&
if (((std::abs(d01) < d0Cut_)) && (std::abs(d02) < d0Cut_) && (std::abs(dz1) < dzCut_) &&
(std::abs(dz2) < dzCut_)) {
// pt cut
if ((pt1 + pt2) / 2 < ptCut_) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#TrackEffMon_bhmuon.AlgoName = 'BHMuonTk'
#TrackEffMon_bhmuon.FolderName = 'Tracking/TrackParameters/TrackEfficiency'

# # Split Tracking
# Split Tracking
# from DQM.TrackingMonitor.TrackSplittingMonitor_cfi import *
# TrackSplitMonitor.FolderName = 'Tracking/TrackParameters/SplitTracks'

Expand Down

0 comments on commit 8f8abe8

Please sign in to comment.