Skip to content

Commit

Permalink
Merge pull request #44758 from syuvivida/CMSSW_14_0_X
Browse files Browse the repository at this point in the history
[14_0_X] DQM: reportSummaryMap: change the sqrt(s) energy from 13 to 13.6 TeV
  • Loading branch information
cmsbuild authored May 1, 2024
2 parents ce45429 + c7636b6 commit 93d333f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DQMServices/Components/plugins/DQMProvInfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class DQMProvInfo : public DQMOneEDAnalyzer<> {

// Beam momentum at flat top, used to determine if collisions are
// occurring with the beams at the energy allowed for physics production.
const static int MAX_MOMENTUM = 6500;
const static int MAX_MOMENTUM = 6800;

// Beam momentum allowed offset: it is a momentum value subtracted to
// maximum momentum in order to decrease the threshold for beams going to
Expand Down Expand Up @@ -309,7 +309,7 @@ void DQMProvInfo::bookHistogramsEventInfo(DQMStore::IBooker& iBooker) {
reportSummaryMap_->setBinLabel(VBIN_GEM_P, "GEMp", 2);
reportSummaryMap_->setBinLabel(VBIN_GEM_M, "GEMm", 2);
reportSummaryMap_->setBinLabel(VBIN_PHYSICS_DECLARED, "PhysDecl", 2);
reportSummaryMap_->setBinLabel(VBIN_MOMENTUM, "13 TeV", 2);
reportSummaryMap_->setBinLabel(VBIN_MOMENTUM, "13.6 TeV", 2);
reportSummaryMap_->setBinLabel(VBIN_STABLE_BEAM, "Stable B", 2);
reportSummaryMap_->setBinLabel(VBIN_VALID, "Valid", 2);

Expand Down Expand Up @@ -383,7 +383,7 @@ void DQMProvInfo::analyzeLhcInfo(const edm::Event& event) {
hIntensity2_->setBinContent(currentLSNumber, intensity2);

// Part3: Using LHC status info, fill in VBIN_MOMENTUM and VBIN_STABLE_BEAM
// Fill 13 TeV bit in y bin VBIN_MOMENTUM
// Fill 13.6 TeV bit in y bin VBIN_MOMENTUM
if (momentum >= MAX_MOMENTUM - MOMENTUM_OFFSET) {
fillSummaryMapBin(currentLSNumber, VBIN_MOMENTUM, 1.);
} else {
Expand Down

0 comments on commit 93d333f

Please sign in to comment.