We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d03da77 commit c618759Copy full SHA for c618759
1 file changed
ALICE3/TableProducer/OTF/onTheFlyTofPid.cxx
@@ -305,11 +305,11 @@ struct OnTheFlyTofPid {
305
306
// Check if hit is within layer geometric acceptance
307
if (std::abs(layerRadius - r) > 10.f) {
308
- LOG(warning) << "Hit out of TOF layer acceptance: r=" << r << " cm with respect to the layer radius " << layerRadius;
+ LOG(debug) << "Hit out of TOF layer acceptance: r=" << r << " cm with respect to the layer radius " << layerRadius;
309
return false;
310
}
311
if (std::abs(z) > layerLength / 2.0f) {
312
- LOG(warning) << "Hit out of TOF layer acceptance: z=" << z << " cm with respect to the layer length " << layerLength;
+ LOG(debug) << "Hit out of TOF layer acceptance: z=" << z << " cm with respect to the layer length " << layerLength;
313
314
315
0 commit comments