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 8662a04 commit 1ae9691Copy full SHA for 1ae9691
Detectors/TPC/workflow/include/TPCWorkflow/TPCFourierTransformAggregatorSpec.h
@@ -253,6 +253,11 @@ class TPCFourierTransformAggregatorSpec : public o2::framework::Task
253
void makeTPCScaler(DataAllocator& output, const bool eos)
254
{
255
LOGP(info, "Making TPC scalers");
256
+ if (mTPCScalerCont.idcs.empty()) {
257
+ LOGP(warning, "No IDCs received for TPC scaler creation");
258
+ return;
259
+ }
260
+
261
// check if IDC scalers can be created - check length of continous received IDCs
262
std::vector<std::pair<long, long>> times;
263
times.reserve(mTPCScalerCont.idcs.size());
0 commit comments