Skip to content

Commit 9c381c4

Browse files
authored
Merge pull request #43 from Eventdisplay/low-gain-optional
nlowgain can be missing (as for CTAO trees)
2 parents 75047c5 + 52f75ad commit 9c381c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eventdisplay_ml/data_processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def _resolve_branch_aliases(tree, branch_list):
130130
resolved = [b for b in resolved if b not in synthesized]
131131

132132
# Drop missing optional branches
133-
optional = {"fpointing_dx", "fpointing_dy", "E", "Erec", "ErecS"}
133+
optional = {"fpointing_dx", "fpointing_dy", "E", "Erec", "ErecS", "nlowgain"}
134134
final = [b for b in resolved if b not in optional or b in keys]
135135

136136
return final, rename

0 commit comments

Comments
 (0)