Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions DQM/HLTEvF/plugins/ScoutingCollectionMonitor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,7 @@ void ScoutingCollectionMonitor::analyze(const edm::Event& iEvent, const edm::Eve
mvaDiscriminator_pfj_hist->Fill(jet.mvaDiscriminator());
}

primaryVertex_counter = 0;
// fill all the primary vertices histograms
for (const auto& vtx : *primaryVerticesH) {
primaryVertex_counter++;
Expand Down Expand Up @@ -948,8 +949,8 @@ void ScoutingCollectionMonitor::bookHistograms(DQMStore::IBooker& ibook,

if (!onlyScouting_) {
PVvsPU_hist =
ibook.bookProfile("PVvsPU", "Number of primary vertices vs pile up; pile up; <N_{PV}>", 20, 20, 60, 0, 65);
rhovsPU_hist = ibook.bookProfile("rhovsPU", "#rho vs pile up; pile up; <#rho>", 20, 20, 60, 0, 45);
ibook.bookProfile("PVvsPU", "Number of primary vertices vs pile up; pile up; <N_{PV}>", 20, 20, 70, 0, 65);
rhovsPU_hist = ibook.bookProfile("rhovsPU", "#rho vs pile up; pile up; <#rho>", 20, 20, 70, 0, 45);
}

ibook.setCurrentFolder(topfoldername_ + "/PFcand");
Expand Down