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

[Backport 125X] [MUO] Suppress excessive warnings in muon tracking at HLT #39602

Merged
merged 1 commit into from Oct 10, 2022
Merged
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
Expand Up @@ -227,7 +227,7 @@ MuonCandidate::CandidateContainer GlobalTrajectoryBuilderBase::build(const Track
if (!refitted0.empty())
tkTrajectory = std::make_unique<Trajectory>(*(refitted0.begin()));
else
edm::LogWarning(theCategory) << " Failed to load tracker track trajectory";
LogDebug(theCategory) << " Failed to load tracker track trajectory";
} else
tkTrajectory = it->releaseTrackerTrajectory();
if (tkTrajectory)
Expand Down Expand Up @@ -263,7 +263,7 @@ MuonCandidate::CandidateContainer GlobalTrajectoryBuilderBase::build(const Track
if (!refitted0.empty()) {
tkTrajectory = std::make_unique<Trajectory>(*(refitted0.begin()));
} else
edm::LogWarning(theCategory) << " Failed to load tracker track trajectory";
LogDebug(theCategory) << " Failed to load tracker track trajectory";
} else
tkTrajectory = it->releaseTrackerTrajectory();
std::unique_ptr<Trajectory> cpy;
Expand Down