Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

One more fix on the indexing of VFATs in GEM onlineDQM, a backport to CMSSW_11_2_X #33296

Merged
merged 1 commit into from
Apr 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions DQM/GEM/plugins/GEMDAQStatusSource.cc
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ void GEMDAQStatusSource::analyze(edm::Event const &event, edm::EventSetup const
}

Int_t nIdxVFAT = getVFATNumber(gid.station(), gid.roll(), vfatStat->phi());
mapStatusVFAT_.FillBits(key3, nIdxVFAT, unQFVFAT);
mapStatusVFATPerCh_.FillBits(key4Ch, nIdxVFAT, unQFVFAT);
mapStatusVFAT_.FillBits(key3, nIdxVFAT + 1, unQFVFAT);
mapStatusVFATPerCh_.FillBits(key4Ch, nIdxVFAT + 1, unQFVFAT);
}
}

Expand Down
2 changes: 1 addition & 1 deletion DQM/GEM/plugins/GEMDigiSource.cc
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ void GEMDigiSource::analyze(edm::Event const& event, edm::EventSetup const& even
for (auto d = digis_in_det.first; d != digis_in_det.second; ++d) {
// Filling of digi occupancy
Int_t nIdxVFAT = getVFATNumberByStrip(gid.station(), rId.roll(), d->strip());
mapTotalDigi_layer_.Fill(key3, gid.chamber(), nIdxVFAT);
mapTotalDigi_layer_.Fill(key3, gid.chamber(), nIdxVFAT + 1);

// Filling of strip
mapStripOcc_ieta_.Fill(key3, rId.roll()); // Roll
Expand Down