@@ -58,7 +58,7 @@ void ITSMFTDeadMapBuilder::init(InitContext& ic)
5858 mTFSampling = ic.options ().get <int >(" tf-sampling" );
5959 mTFLength = ic.options ().get <int >(" tf-length" );
6060 mDoLocalOutput = ic.options ().get <bool >(" local-output" );
61- mObjectName = ic.options ().get <std::string>(" output-filename " );
61+ mObjectName = ic.options ().get <std::string>(" outfile " );
6262 mLocalOutputDir = ic.options ().get <std::string>(" output-dir" );
6363
6464 LOG (info) << " Sampling one TF every " << mTFSampling ;
@@ -296,7 +296,7 @@ DataProcessorSpec getITSMFTDeadMapBuilderSpec(std::string datasource, bool doMFT
296296 AlgorithmSpec{adaptFromTask<ITSMFTDeadMapBuilder>(datasource, doMFT)},
297297 Options{{" tf-sampling" , VariantType::Int, 1000 , {" Process every Nth TF. Selection according to first TF orbit." }},
298298 {" tf-length" , VariantType::Int, 32 , {" Orbits per TF." }},
299- {" output-filename " , VariantType::String, objectname_default, {" ROOT object file name." }},
299+ {" outfile " , VariantType::String, objectname_default, {" ROOT object file name." }},
300300 {" local-output" , VariantType::Bool, false , {" Save ROOT tree file locally." }},
301301 {" output-dir" , VariantType::String, " ./" , {" ROOT tree local output directory." }}}};
302302}
0 commit comments