diff --git a/algo/ca/core/tracking/CaTripletConstructor.cxx b/algo/ca/core/tracking/CaTripletConstructor.cxx index 6d64be572446e097042888602cbef5a5d200986e..8fdc40b109bd0c86ae0ebe9fd4b6d75b38b11f9e 100644 --- a/algo/ca/core/tracking/CaTripletConstructor.cxx +++ b/algo/ca/core/tracking/CaTripletConstructor.cxx @@ -392,8 +392,10 @@ void TripletConstructor::FindRightHit() CollectHits(T2, fIstaR, tripletChi2Cut, iMC, collectedHits, fParameters.GetMaxTripletPerDoublets()); if (collectedHits.size() >= fParameters.GetMaxTripletPerDoublets()) { - LOG(debug) << "Ca: GetMaxTripletPerDoublets==" << fParameters.GetMaxTripletPerDoublets() - << " reached in findTripletsStep0()"; + // FU, 28.08.2024, Comment the following log lines since it spams the output + // of our tests and finally results in crashes on run4 + // LOG(debug) << "Ca: GetMaxTripletPerDoublets==" << fParameters.GetMaxTripletPerDoublets() + // << " reached in findTripletsStep0()"; // reject already created triplets for this doublet collectedHits.clear(); }