Skip to content

Commit

Permalink
added missing dump-instrument tool
Browse files Browse the repository at this point in the history
  • Loading branch information
kosack committed Aug 3, 2023
1 parent 26e692d commit 4df0b13
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ctapipe/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class MainTool(Application):
),
"train-disp-regressor": (
"ctapipe.tools.train_disp_regressor.TrainDispRegressor",
"Train telescope-type-wise disp regression models for direction reconstruction",
"Train telescope-type-wise disp regression models\n"
"for direction reconstruction",
),
"merge": (
"ctapipe.tools.merge.MergeTool",
Expand All @@ -48,6 +49,11 @@ class MainTool(Application):
"ctapipe.tools.quickstart.QuickStartTool",
"Create a directory with example configuration files",
),
"dump-instrument": (
"ctapipe.tools.dump_instrument.DumpInstrumentTool",
"read the subarray description from any file with an EventSource\nand write "
"it to a set of output files.",
),
}

def start(self):
Expand Down

0 comments on commit 4df0b13

Please sign in to comment.