@@ -29,7 +29,6 @@ void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
2929 {" disable-root-output" , VariantType::Bool, false , {" disable root-files output writers" }},
3030 {" enable-unbinned-root-output" , VariantType::Bool, false , {" writing out unbinned track data" }},
3131 {" track-sources" , VariantType::String, std::string{o2::dataformats::GlobalTrackID::ALL}, {" comma-separated list of sources to use" }},
32- {" use-ft0" , VariantType::Bool, false , {" enable FT0 rec-points" }},
3332 {" material-type" , VariantType::Int, 2 , {" Type for the material budget during track propagation: 0=None, 1=Geo, 2=LUT" }}};
3433 std::swap (workflowOptions, options);
3534}
@@ -44,8 +43,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& config)
4443 const bool enableUnbinnedWriter = config.options ().get <bool >(" enable-unbinned-root-output" );
4544 auto src = o2::dataformats::GlobalTrackID::getSourcesMask (config.options ().get <std::string>(" track-sources" ));
4645 auto materialType = static_cast <o2::base::Propagator::MatCorrType>(config.options ().get <int >(" material-type" ));
47- const bool useft0 = config.options ().get <bool >(" use-ft0" );
48- workflow.emplace_back (o2::tpc::getTPCTimeSeriesSpec (disableWriter, materialType, enableUnbinnedWriter, src, useft0));
46+ workflow.emplace_back (o2::tpc::getTPCTimeSeriesSpec (disableWriter, materialType, enableUnbinnedWriter, src));
4947 if (!disableWriter) {
5048 workflow.emplace_back (o2::tpc::getTPCTimeSeriesWriterSpec ());
5149 }
0 commit comments