Skip to content

Commit

Permalink
Merge pull request #852 from sethcooper/UpdateHcalHTRData700pre2
Browse files Browse the repository at this point in the history
Add 1 to the raw HCAL HTR fiber number for HTR histogram firmware unpacking.
  • Loading branch information
ktf committed Sep 20, 2013
2 parents e3966dc + 6e2f7c6 commit 3439400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EventFilter/HcalRawToDigi/src/HcalHTRData.cc
Expand Up @@ -417,8 +417,8 @@ void HcalHTRData::getHistogramFibers(int& a, int& b) const {
a=((m_rawConst[2]&0x0F00)>>8);
b=((m_rawConst[2]&0xF000)>>12);
} else {
a=((m_rawConst[5]&0x0F00)>>8);
b=((m_rawConst[5]&0xF000)>>12);
a=((m_rawConst[5]&0x0F00)>>8)+1;
b=((m_rawConst[5]&0xF000)>>12)+1;
}
}

Expand Down

0 comments on commit 3439400

Please sign in to comment.