diff --git a/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterSpec.h b/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterSpec.h index c46c07a4238a7..603c123d337c0 100644 --- a/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterSpec.h +++ b/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterSpec.h @@ -180,9 +180,9 @@ o2::framework::DataProcessorSpec getFITIntegrateClusterSpec(const bool disableWr inputs); std::vector outputs; - outputs.emplace_back(FitType::getDataOrigin(), FitType::getDataDescriptionFITC(), 0, Lifetime::Sporadic); + outputs.emplace_back(FitType::getDataOrigin(), FitType::getDataDescriptionFITC(), 0, Lifetime::Timeframe); if (!disableWriter) { - outputs.emplace_back(FitType::getDataOrigin(), FitType::getDataDescriptionFITTFId(), 0, Lifetime::Sporadic); + outputs.emplace_back(FitType::getDataOrigin(), FitType::getDataDescriptionFITTFId(), 0, Lifetime::Timeframe); } return DataProcessorSpec{ diff --git a/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterWriterSpec.h b/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterWriterSpec.h index 292376b7a2463..c53d3e9b6425c 100644 --- a/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterWriterSpec.h +++ b/Detectors/FIT/workflow/include/FITWorkflow/FITIntegrateClusterWriterSpec.h @@ -38,8 +38,8 @@ DataProcessorSpec getFITIntegrateClusterWriterSpec() return MakeRootTreeWriterSpec(fmt::format("{}-currents-writer", FitType::getName()).data(), treeFile.data(), treeName.data(), - BranchDefinition::DataTStruct>{InputSpec{"ifitc", FitType::getDataOrigin(), FitType::getDataDescriptionFITC(), 0, Lifetime::Sporadic}, "IFITC", 1}, - BranchDefinition{InputSpec{"tfID", FitType::getDataOrigin(), FitType::getDataDescriptionFITTFId(), 0, Lifetime::Sporadic}, "tfID", 1})(); + BranchDefinition::DataTStruct>{InputSpec{"ifitc", FitType::getDataOrigin(), FitType::getDataDescriptionFITC(), 0, Lifetime::Timeframe}, "IFITC", 1}, + BranchDefinition{InputSpec{"tfID", FitType::getDataOrigin(), FitType::getDataDescriptionFITTFId(), 0, Lifetime::Timeframe}, "tfID", 1})(); } } // end namespace fit diff --git a/Detectors/TOF/workflow/src/TOFIntegrateClusterSpec.cxx b/Detectors/TOF/workflow/src/TOFIntegrateClusterSpec.cxx index 5e58f5715f63a..2b647f9236611 100644 --- a/Detectors/TOF/workflow/src/TOFIntegrateClusterSpec.cxx +++ b/Detectors/TOF/workflow/src/TOFIntegrateClusterSpec.cxx @@ -174,10 +174,10 @@ o2::framework::DataProcessorSpec getTOFIntegrateClusterSpec(const bool disableWr inputs); std::vector outputs; - outputs.emplace_back(o2::header::gDataOriginTOF, "ITOFCN", 0, Lifetime::Sporadic); - outputs.emplace_back(o2::header::gDataOriginTOF, "ITOFCQ", 0, Lifetime::Sporadic); + outputs.emplace_back(o2::header::gDataOriginTOF, "ITOFCN", 0, Lifetime::Timeframe); + outputs.emplace_back(o2::header::gDataOriginTOF, "ITOFCQ", 0, Lifetime::Timeframe); if (!disableWriter) { - outputs.emplace_back(o2::header::gDataOriginTOF, "ITOFTFID", 0, Lifetime::Sporadic); + outputs.emplace_back(o2::header::gDataOriginTOF, "ITOFTFID", 0, Lifetime::Timeframe); } return DataProcessorSpec{ diff --git a/Detectors/TOF/workflowIO/src/TOFIntegrateClusterWriterSpec.cxx b/Detectors/TOF/workflowIO/src/TOFIntegrateClusterWriterSpec.cxx index 14b663b791c7c..e230198d668b2 100644 --- a/Detectors/TOF/workflowIO/src/TOFIntegrateClusterWriterSpec.cxx +++ b/Detectors/TOF/workflowIO/src/TOFIntegrateClusterWriterSpec.cxx @@ -30,9 +30,9 @@ DataProcessorSpec getTOFIntegrateClusterWriterSpec() return MakeRootTreeWriterSpec("tof-currents-writer", "o2currents_tof.root", "itofc", - BranchDefinition>{InputSpec{"itofcn", o2::header::gDataOriginTOF, "ITOFCN", 0, Lifetime::Sporadic}, "ITOFCN", 1}, - BranchDefinition>{InputSpec{"itofcq", o2::header::gDataOriginTOF, "ITOFCQ", 0, Lifetime::Sporadic}, "ITOFCQ", 1}, - BranchDefinition{InputSpec{"itoftfid", o2::header::gDataOriginTOF, "ITOFTFID", 0, Lifetime::Sporadic}, "tfID", 1})(); + BranchDefinition>{InputSpec{"itofcn", o2::header::gDataOriginTOF, "ITOFCN", 0, Lifetime::Timeframe}, "ITOFCN", 1}, + BranchDefinition>{InputSpec{"itofcq", o2::header::gDataOriginTOF, "ITOFCQ", 0, Lifetime::Timeframe}, "ITOFCQ", 1}, + BranchDefinition{InputSpec{"itoftfid", o2::header::gDataOriginTOF, "ITOFTFID", 0, Lifetime::Timeframe}, "tfID", 1})(); } } // namespace tof diff --git a/Detectors/TPC/workflow/src/TPCIntegrateClusterSpec.cxx b/Detectors/TPC/workflow/src/TPCIntegrateClusterSpec.cxx index f06782af16b69..46be10dbc2c69 100644 --- a/Detectors/TPC/workflow/src/TPCIntegrateClusterSpec.cxx +++ b/Detectors/TPC/workflow/src/TPCIntegrateClusterSpec.cxx @@ -185,9 +185,9 @@ o2::framework::DataProcessorSpec getTPCIntegrateClusterSpec(const bool disableWr inputs); std::vector outputs; - outputs.emplace_back(o2::header::gDataOriginTPC, getDataDescriptionTPCC(), 0, Lifetime::Sporadic); + outputs.emplace_back(o2::header::gDataOriginTPC, getDataDescriptionTPCC(), 0, Lifetime::Timeframe); if (!disableWriter) { - outputs.emplace_back(o2::header::gDataOriginTPC, getDataDescriptionTPCTFId(), 0, Lifetime::Sporadic); + outputs.emplace_back(o2::header::gDataOriginTPC, getDataDescriptionTPCTFId(), 0, Lifetime::Timeframe); } return DataProcessorSpec{