diff --git a/orcasong/file_to_hits.py b/orcasong/file_to_hits.py index 449ebc33324548fabd736e32eb84722c7d827d10..6521565a3154f1d5787c0ecef43d6779afb4fc18 100644 --- a/orcasong/file_to_hits.py +++ b/orcasong/file_to_hits.py @@ -89,8 +89,7 @@ def get_hits(event_blob, geo, do_mc_hits, data_cuts, do4d): hits = geo.apply(hits) if data_cuts['triggered'] is True: - hits = hits.__array__[hits.triggered.astype(bool)] - #hits = hits.triggered_hits # alternative, though it only works for the triggered condition! + hits = hits.triggered_hits # alternative, though it only works for the triggered condition! pos_x, pos_y, pos_z = hits.pos_x, hits.pos_y, hits.pos_z hits_time = hits.time