Skip to content

Commit

Permalink
Make ThetaCutsCalculator configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBeiske committed Jan 13, 2024
1 parent a8e97af commit 7c2efc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ctapipe/tools/make_irf.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ class IrfTool(Tool):
}

classes = [
ThetaCutsCalculator,
OutputEnergyBinning,
FovOffsetBinning,
EventsLoader,
Expand Down
2 changes: 1 addition & 1 deletion ctapipe/tools/optimize_event_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class IrfEventSelector(Tool):
"chunk_size": "IrfEventSelector.chunk_size",
}

classes = [GridOptimizer, FovOffsetBinning, EventsLoader]
classes = [GridOptimizer, ThetaCutsCalculator, FovOffsetBinning, EventsLoader]

def setup(self):
self.go = GridOptimizer(parent=self)
Expand Down

0 comments on commit 7c2efc7

Please sign in to comment.