Skip to content

Commit 994633e

Browse files
committed
eliminate new conflict in the option names
1 parent 0e0c7bd commit 994633e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Detectors/MUON/MID/Workflow/src/decoded-digits-writer-workflow.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
2727
{
2828
std::vector<ConfigParamSpec>
2929
options{
30-
{"default-mid-digits-output-filename", VariantType::String, "mid-digits-decoded.root", {"Decoded digits output file"}},
31-
{"default-mid-digits-tree-name", VariantType::String, "middigits", {"Name of tree in digits file"}}};
30+
{"mid-digits-output-filename", VariantType::String, "mid-digits-decoded.root", {"Decoded digits output file"}},
31+
{"mid-digits-tree-name", VariantType::String, "middigits", {"Name of tree in digits file"}}};
3232
workflowOptions.insert(workflowOptions.end(), options.begin(), options.end());
3333
}
3434

@@ -45,8 +45,8 @@ void customize(std::vector<o2::framework::CompletionPolicy>& policies)
4545

4646
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
4747
{
48-
auto outputFilename = cfgc.options().get<std::string>("default-mid-digits-output-filename");
49-
auto treeFilename = cfgc.options().get<std::string>("default-mid-digits-tree-name");
48+
auto outputFilename = cfgc.options().get<std::string>("mid-digits-output-filename");
49+
auto treeFilename = cfgc.options().get<std::string>("mid-digits-tree-name");
5050
WorkflowSpec specs;
5151
specs.emplace_back(MakeRootTreeWriterSpec("MIDDigitWriter",
5252
outputFilename.c_str(),

0 commit comments

Comments
 (0)