Skip to content

Commit

Permalink
Still trying to fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Aug 4, 2024
1 parent 17397e8 commit 32adc40
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ public List<List<LCRelation>> findClusters(List<LCRelation> fittedHits) {
IIdentifier id = rawHit.getIdentifier();
int channel_number = sid_helper.getElectrodeValue(id);

if(((HpsSiSensor) rawHit.getDetectorElement()).isBadChannel(channel_number)){continue;}
if(_doDeadFix){
if(((HpsSiSensor) rawHit.getDetectorElement()).isBadChannel(channel_number)){continue;}
}

// Check for duplicate RawTrackerHits or channel numbers
if (channel_to_hit.containsKey(channel_number)) {
Expand Down

0 comments on commit 32adc40

Please sign in to comment.