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

uMNio data skipping implemented for urgent HLT patch #14158

Merged
merged 1 commit into from Apr 21, 2016
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
2 changes: 2 additions & 0 deletions EventFilter/HcalRawToDigi/src/HcalUnpacker.cc
Expand Up @@ -588,6 +588,8 @@ void HcalUnpacker::unpackUTCA(const FEDRawData& raw, const HcalElectronicsMap& e
int nps=(amc13->AMCId(iamc)>>12)&0xF;

HcalUHTRData uhtr(amc13->AMCPayload(iamc),amc13->AMCSize(iamc));
//Check to make sure uMNio is not unpacked here
if(uhtr.getFormatVersion() != 1) continue;
#ifdef DebugLog
//debug printouts
int nwords=uhtr.getRawLengthBytes()/2;
Expand Down