Skip to content

Commit 4f4fe91

Browse files
authored
Update Tracker.cxx
1 parent 9f2b487 commit 4f4fe91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Detectors/ITSMFT/ITS/tracking/src/Tracker.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ void Tracker<nLayers>::clustersToTracks(const LogFunc& logger, const LogFunc& er
6666
LOGP(error, "Too much memory used during {} in iteration {} in ROF span {}-{} iVtx={}: {:.2f} GB. Current limit is {:.2f} GB, check the detector status and/or the selections.",
6767
StateNames[mCurState], iteration, iROFs, iROFs + mTrkParams[iteration].nROFsPerIterations, iVertex,
6868
(double)mTimeFrame->getArtefactsMemory() / GB, (double)mTrkParams[iteration].MaxMemory / GB);
69-
if (typeid(err) != typeid(std::bad_alloc) { // only print if the exceptions is different from what is expected
69+
if (typeid(err) != typeid(std::bad_alloc)) { // only print if the exceptions is different from what is expected
7070
LOGP(error, "Exception: {}", err.what());
7171
}
7272
if (mTrkParams[iteration].DropTFUponFailure) {

0 commit comments

Comments
 (0)