Skip to content

Commit

Permalink
Merge pull request #65 from cta-observatory/failing_pixels
Browse files Browse the repository at this point in the history
Change default of ff and ped failing pixels to False
  • Loading branch information
maxnoe authored Feb 17, 2021
2 parents e394450 + b4cb0ad commit d895204
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 d895204

Please sign in to comment.