We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90267bb commit 7263f79Copy full SHA for 7263f79
Detectors/TPC/workflow/include/TPCWorkflow/TPCFourierTransformAggregatorSpec.h
@@ -257,6 +257,11 @@ class TPCFourierTransformAggregatorSpec : public o2::framework::Task
257
void makeTPCScaler(DataAllocator& output, const bool eos)
258
{
259
LOGP(info, "Making TPC scalers");
260
+ if (mTPCScalerCont.idcs.empty()) {
261
+ LOGP(warning, "No IDCs received for TPC scaler creation");
262
+ return;
263
+ }
264
+
265
// check if IDC scalers can be created - check length of continous received IDCs
266
std::vector<std::pair<long, long>> times;
267
times.reserve(mTPCScalerCont.idcs.size());
0 commit comments