Skip to content

Commit

Permalink
Change default of ff and ped failing pixels to False
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Feb 17, 2021
1 parent e394450 commit b4cb0ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ctapipe_io_lst/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,8 +649,8 @@ def initialize_mon_container(self, array_event):
# all pixels broken by default
status_container = PixelStatusContainer(
hardware_failing_pixels=np.ones(shape, dtype=bool),
pedestal_failing_pixels=np.ones(shape, dtype=bool),
flatfield_failing_pixels=np.ones(shape, dtype=bool),
pedestal_failing_pixels=np.zeros(shape, dtype=bool),
flatfield_failing_pixels=np.zeros(shape, dtype=bool),
)
mon_camera_container.pixel_status = status_container

Expand Down

0 comments on commit b4cb0ad

Please sign in to comment.