Skip to content

Commit

Permalink
Merge pull request #42956 from jlidrych/master
Browse files Browse the repository at this point in the history
Removing re-binnning from SiStripBadAPVandHotStripAlgorithm
  • Loading branch information
cmsbuild authored Oct 9, 2023
2 parents 6e034de + 0d0c42d commit c07e13c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1137,9 +1137,8 @@ void SiStripBadAPVandHotStripAlgorithmFromClusterOccupancy::initializeDQMHistogr
if (j != 0) {
histoTitle += " " + layerName[i] + " " + oss.str();
}
tmp = dqmStore->book2D(histoName.c_str(), histoTitle.c_str(), 1000, 0., 6., 1000, -1., 3.);
tmp = dqmStore->book2D(histoName.c_str(), histoTitle.c_str(), 100, 0., 6., 100, -1., 3.);
medianVsAbsoluteOccupancy[i][j] = tmp->getTH2F();
medianVsAbsoluteOccupancy[i][j]->Rebin2D(10, 10);
medianVsAbsoluteOccupancy[i][j]->GetXaxis()->SetTitle("log_{10}(Abs. Occupancy)");
medianVsAbsoluteOccupancy[i][j]->GetYaxis()->SetTitle("log_{10}(Median Occupancy)");
//
Expand Down

0 comments on commit c07e13c

Please sign in to comment.