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

Disabled duplicate GEM TP warnings in EMTF GEM unpacker #35042

Merged
merged 1 commit into from Aug 31, 2021
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,11 +227,12 @@ namespace l1t {
}
} // End loop: for (auto const & iHit : *res_hit)

if (exact_duplicate)
edm::LogWarning("L1T|EMTF") << "EMTF unpacked duplicate GEM digis: BX " << Hit_.BX() << ", endcap "
<< Hit_.Endcap() << ", station " << Hit_.Station() << ", neighbor "
<< Hit_.Neighbor() << ", ring " << Hit_.Ring() << ", chamber " << Hit_.Chamber()
<< ", roll " << Hit_.Roll() << ", pad " << Hit_.Pad() << std::endl;
// TODO: Re-enable once GEM TP data format is fixed
// if (exact_duplicate)
// edm::LogWarning("L1T|EMTF") << "EMTF unpacked duplicate GEM digis: BX " << Hit_.BX() << ", endcap "
// << Hit_.Endcap() << ", station " << Hit_.Station() << ", neighbor "
// << Hit_.Neighbor() << ", ring " << Hit_.Ring() << ", chamber " << Hit_.Chamber()
// << ", roll " << Hit_.Roll() << ", pad " << Hit_.Pad() << std::endl;

(res->at(iOut)).push_GEM(GEM_);
if (!exact_duplicate)
Expand Down