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

Algo not found warning removed from L1TStag2uGTTiming module for the … #45290

Closed
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
12 changes: 6 additions & 6 deletions DQM/L1TMonitor/src/L1TStage2uGTTiming.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ void L1TStage2uGTTiming::dqmBeginRun(edm::Run const& iRun, edm::EventSetup const
if (gtUtil_->getAlgBitFromName(unprescaledAlgoShortList_.at(i), algoBitUnpre_)) {
unprescaledAlgoBitName_.emplace_back(unprescaledAlgoShortList_.at(i), algoBitUnpre_);
} else {
edm::LogWarning("L1TStage2uGTTiming")
<< "Algo \"" << unprescaledAlgoShortList_.at(i) << "\" not found in the trigger menu "
<< gtUtil_->gtTriggerMenuName() << ". Could not retrieve algo bit number.";
LogDebug("L1TStage2uGTTiming") << "Algo \"" << unprescaledAlgoShortList_.at(i)
<< "\" not found in the trigger menu " << gtUtil_->gtTriggerMenuName()
<< ". Could not retrieve algo bit number.";
}
}

Expand All @@ -77,9 +77,9 @@ void L1TStage2uGTTiming::dqmBeginRun(edm::Run const& iRun, edm::EventSetup const
if ((gtUtil_->getAlgBitFromName(prescaledAlgoShortList_.at(i), algoBitPre_))) {
prescaledAlgoBitName_.emplace_back(prescaledAlgoShortList_.at(i), algoBitPre_);
} else {
edm::LogWarning("L1TStage2uGTTiming")
<< "Algo \"" << prescaledAlgoShortList_.at(i) << "\" not found in the trigger menu "
<< gtUtil_->gtTriggerMenuName() << ". Could not retrieve algo bit number.";
LogDebug("L1TStage2uGTTiming") << "Algo \"" << prescaledAlgoShortList_.at(i)
<< "\" not found in the trigger menu " << gtUtil_->gtTriggerMenuName()
<< ". Could not retrieve algo bit number.";
}
}
}
Expand Down