Skip to content

Commit

Permalink
Merge pull request #193 from cta-observatory/protor1
Browse files Browse the repository at this point in the history
Allow PBFHEAD=ProtoR1.CameraEvent in is_compatible
  • Loading branch information
maxnoe authored Jun 21, 2023
2 parents 27447ab + 57011d9 commit fbeee78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctapipe_io_lst/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def is_compatible(file_path):
(header['XTENSION'] == 'BINTABLE')
and (header['ZTABLE'] is True)
and (header['ORIGIN'] == 'CTA')
and (header['PBFHEAD'] == 'R1.CameraEvent')
and (header['PBFHEAD'] in ('R1.CameraEvent', 'ProtoR1.CameraEvent'))
)

is_lst_file = 'lstcam_counters' in ttypes
Expand Down

0 comments on commit fbeee78

Please sign in to comment.