Skip to content

Commit

Permalink
Merge pull request #14599 from kpedro88/uMNio-81X-bugfix
Browse files Browse the repository at this point in the history
Fix QIE11 unpacking bug
  • Loading branch information
davidlange6 committed May 25, 2016
2 parents 4229fca + 40d94b9 commit 9851292
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions EventFilter/HcalRawToDigi/src/HcalUnpacker.cc
Expand Up @@ -649,10 +649,9 @@ void HcalUnpacker::unpackUTCA(const FEDRawData& raw, const HcalElectronicsMap& e
std::cout << "OH NO! detector id is null!" << std::endl;
#endif
}
}

} else if (i.flavor() == 2){
//////////////////////////////////////////////////HF UNPACKER/////////////////////////////////////////////////////////////////////
if (i.flavor() == 2) {

int ifiber=((i.channelid()>>3)&0x1F);
int ichan=(i.channelid()&0x7);
HcalElectronicsId eid(crate,slot,ifiber,ichan, false);
Expand Down

0 comments on commit 9851292

Please sign in to comment.