Skip to content

Commit f6fe8b3

Browse files
committed
Properly propagate camera option to load_wfs_compute_charge script
1 parent 2bb3ad7 commit f6fe8b3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/nectarchain/makers/core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ class EventsLoopNectarCAMCalibrationTool(BaseNectarCAMCalibrationTool):
174174
help="camera for which the data will be processed",
175175
default_value="NectarCAMQM",
176176
allow_none=False,
177-
read_only=True,
178177
).tag(config=True)
179178

180179
output_path = Path(

src/nectarchain/user_scripts/ggrolleron/load_wfs_compute_charge.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ def main(
118118
):
119119
# print(kwargs)
120120
run_number = kwargs.pop("run_number")
121+
camera = kwargs.pop("camera")
121122
max_events = kwargs.pop("max_events", [None for i in range(len(run_number))])
122123
if max_events is None:
123124
max_events = [None for i in range(len(run_number))]

0 commit comments

Comments
 (0)