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
LOG(warning) << fmt::format(" - The processed timeframe had {} clusters with wild z coordinates, check the dictionaries", mTimeFrame.hasBogusClusters());
293
+
if (timeFrame->hasBogusClusters()) {
294
+
LOG(warning) << fmt::format(" - The processed timeframe had {} clusters with wild z coordinates, check the dictionaries", timeFrame->hasBogusClusters());
295
295
}
296
296
297
297
for (unsignedint iROF{0}; iROF < rofs.size(); ++iROF) {
298
298
299
299
auto& rof{rofs[iROF]};
300
-
tracks = mTimeFrame.getTracks(iROF);
301
-
trackLabels = mTimeFrame.getTracksLabel(iROF);
300
+
tracks = timeFrame->getTracks(iROF);
301
+
trackLabels = timeFrame->getTracksLabel(iROF);
302
302
auto number{tracks.size()};
303
303
auto first{allTracks.size()};
304
304
int offset = -rof.getFirstEntry(); // cluster entry!!!
0 commit comments