Skip to content

Commit

Permalink
TPC Time Series Bugfix: InputSpec was TimeFrame lifetime, while outpu…
Browse files Browse the repository at this point in the history
…ts are sporadic. This can break the workflow / drop time frames
  • Loading branch information
davidrohr committed Nov 24, 2023
1 parent ea2421a commit 323e9f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Detectors/TPC/workflow/src/TPCTimeSeriesWriterSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ DataProcessorSpec getTPCTimeSeriesWriterSpec()
return MakeRootTreeWriterSpec("tpc-time-series-writer",
"o2_timeseries_tpc.root",
"treeTimeSeries",
BranchDefinition<TimeSeriesITSTPC>{InputSpec{"timeseries", o2::header::gDataOriginTPC, getDataDescriptionTimeSeries(), 0}, "TimeSeries", 1},
BranchDefinition<o2::dataformats::TFIDInfo>{InputSpec{"itpctfid", o2::header::gDataOriginTPC, getDataDescriptionTPCTimeSeriesTFId(), 0}, "tfID", 1})();
BranchDefinition<TimeSeriesITSTPC>{InputSpec{"timeseries", o2::header::gDataOriginTPC, getDataDescriptionTimeSeries(), 0, Lifetime::Sporadic}, "TimeSeries", 1},
BranchDefinition<o2::dataformats::TFIDInfo>{InputSpec{"itpctfid", o2::header::gDataOriginTPC, getDataDescriptionTPCTimeSeriesTFId(), 0, Lifetime::Sporadic}, "tfID", 1})();
}

} // namespace tpc
Expand Down

0 comments on commit 323e9f3

Please sign in to comment.