Skip to content

Commit

Permalink
Fixing tpc only mode
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-kleiner committed Nov 24, 2023
1 parent 9c8b58d commit f5e8279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Detectors/TPC/workflow/src/TPCTimeSeriesSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class TPCTimeSeries : public Task
std::vector<std::tuple<int, float, float>> idxTPCTrackToTOFCluster; // store for each tpc track index the index to the TOF cluster

// get matches to TOF in case skimmed data is produced
if (mUnbinnedWriter && !mTPCOnly) {
if (mUnbinnedWriter) {
idxTPCTrackToTOFCluster = std::vector<std::tuple<int, float, float>>(tracksTPC.size(), {-1, -999, -999});
const std::vector<gsl::span<const o2::dataformats::MatchInfoTOF>> tofMatches{recoData.getTPCTOFMatches(), recoData.getTPCTRDTOFMatches(), recoData.getITSTPCTOFMatches(), recoData.getITSTPCTRDTOFMatches()};

Expand Down

0 comments on commit f5e8279

Please sign in to comment.