@@ -38,7 +38,8 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
3838{
3939 // option allowing to set parameters
4040 std::vector<o2::framework::ConfigParamSpec> options{
41- {" enable-mc" , o2::framework::VariantType::Bool, false , {" enable MC propagation" }},
41+ {" use-mc" , o2::framework::VariantType::Bool, false , {" use MC information" }},
42+ {" disable-mc" , o2::framework::VariantType::Bool, false , {" disable MC usage" }},
4243 {" enable-cosmics" , o2::framework::VariantType::Bool, false , {" enable reading cosmics" }},
4344 {" track-sources" , VariantType::String, std::string{GID::ALL}, {" comma-separated list of track sources to use" }},
4445 {" cluster-sources" , VariantType::String, std::string{GID::ALL}, {" comma-separated list of cluster sources to use" }},
@@ -61,7 +62,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
6162
6263 // Update the (declared) parameters if changed from the command line
6364 o2::conf::ConfigurableParam::updateFromString (configcontext.options ().get <std::string>(" configKeyValues" ));
64- auto useMC = configcontext.options ().get <bool >(" enable -mc" );
65+ auto useMC = configcontext.options ().get <bool >(" use -mc" );
6566 auto sclOpt = o2::tpc::CorrectionMapsLoader::parseGlobalOptions (configcontext.options ());
6667 const auto enableCosmics = configcontext.options ().get <bool >(" enable-cosmics" );
6768
0 commit comments