Skip to content

Commit ce549f6

Browse files
committed
Float argument needs float type as default value
1 parent 72425f4 commit ce549f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

EventVisualisation/Workflow/src/O2DPLDisplay.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
5555
{"skipOnEmptyInput", VariantType::Bool, false, {"Just don't run the ED when no input is provided"}},
5656
{"filter-its-rof", VariantType::Bool, false, {"don't display tracks outside ITS readout frame"}},
5757
{"no-empty-output", VariantType::Bool, false, {"don't create files with no tracks/clusters"}},
58-
{"filter-time-min", VariantType::Float, -1, {"display tracks only in [min, max] microseconds time range in each time frame, requires --filter-time-max to be specified as well"}},
59-
{"filter-time-max", VariantType::Float, -1, {"display tracks only in [min, max] microseconds time range in each time frame, requires --filter-time-min to be specified as well"}},
58+
{"filter-time-min", VariantType::Float, -1.f, {"display tracks only in [min, max] microseconds time range in each time frame, requires --filter-time-max to be specified as well"}},
59+
{"filter-time-max", VariantType::Float, -1.f, {"display tracks only in [min, max] microseconds time range in each time frame, requires --filter-time-min to be specified as well"}},
6060
};
6161

6262
std::swap(workflowOptions, options);

0 commit comments

Comments
 (0)