You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (trackletsPerCluster > mTrkParams[iteration].TrackletsPerClusterLimit) {
62
-
error(fmt::format("Too many tracklets per cluster ({}), check the detector status and/or the selections.", trackletsPerCluster));
62
+
error(fmt::format("Too many tracklets per cluster ({}) in iteration {}, check the detector status and/or the selections.", trackletsPerCluster, iteration));
63
63
break;
64
64
}
65
65
66
66
total += evaluateTask(&Tracker::computeCells, "Cell finding", logger, iteration);
67
67
logger(fmt::format("\t- Number of Cells: {}", mTraits->getTFNumberOfCells()));
68
68
if (!mTimeFrame->checkMemory(mTrkParams[iteration].MaxMemory)) {
69
-
error("Too much memory used during cell finding, check the detector status and/or the selections.");
69
+
error(fmt::format("Too much memory used during cell finding in iteration {}, check the detector status and/or the selections.", iteration));
LOG(warning) << fmt::format(" - The processed timeframe had {} clusters with wild z coordinates, check the dictionaries", mTimeFrame->hasBogusClusters());
274
276
}
275
277
276
278
for (unsignedint iROF{0}; iROF < rofs.size(); ++iROF) {
277
279
auto& rof{rofs[iROF]};
278
280
auto& tracks = mTimeFrame->getTracks(iROF);
279
-
trackLabels = mTimeFrame->getTracksLabel(iROF);
280
281
auto number{tracks.size()};
281
282
auto first{allTracks.size()};
282
283
int offset = -rof.getFirstEntry(); // cluster entry!!!
LOG(warning) << fmt::format(" - The processed timeframe had {} clusters with wild z coordinates, check the dictionaries", mITSTimeFrame->hasBogusClusters());
259
262
}
260
263
261
264
for (unsignedint iROF{0}; iROF < rofs.size(); ++iROF) {
0 commit comments