diff --git a/src/ctapipe_io_lst/__init__.py b/src/ctapipe_io_lst/__init__.py index a6ca8afd..1f814c90 100644 --- a/src/ctapipe_io_lst/__init__.py +++ b/src/ctapipe_io_lst/__init__.py @@ -627,7 +627,13 @@ def is_compatible(file_path): log.debug("Missing PBFHEAD key") return False - if proto_class not in {"R1.CameraEvent", "CTAR1.Event", "R1v1.Event"}: + supported_protos = { + "R1.CameraEvent", + "ProtoR1.CameraEvent", + "CTAR1.Event", + "R1v1.Event", + } + if proto_class not in supported_protos: log.debug(f"Unsupported PBDHEAD: {proto_class}") return False