Skip to content

Commit

Permalink
Do not exclude ngHB dataframes from TP emulation
Browse files Browse the repository at this point in the history
  • Loading branch information
christopheralanwest committed Jun 6, 2017
1 parent 88cf4b4 commit 78e17e3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -233,7 +233,7 @@ HcalTriggerPrimitiveAlgo::addSignal(const QIE11DataFrame& frame)
{
HcalDetId detId(frame.id());
// prevent QIE11 calibration channels from entering TP emulation
if(detId.subdet() != HcalEndcap) return;
if(detId.subdet() != HcalEndcap && detId.subdet() != HcalBarrel) return;

std::vector<HcalTrigTowerDetId> ids = theTrigTowerGeometry->towerIds(detId);
assert(ids.size() == 1 || ids.size() == 2);
Expand Down

0 comments on commit 78e17e3

Please sign in to comment.