Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,11 @@ class TPCFourierTransformAggregatorSpec : public o2::framework::Task
void makeTPCScaler(DataAllocator& output, const bool eos)
{
LOGP(info, "Making TPC scalers");
if (mTPCScalerCont.idcs.empty()) {
LOGP(warning, "No IDCs received for TPC scaler creation");
return;
}

// check if IDC scalers can be created - check length of continous received IDCs
std::vector<std::pair<long, long>> times;
times.reserve(mTPCScalerCont.idcs.size());
Expand Down