We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 71390e5 + 6b95e35 commit 82e7b20Copy full SHA for 82e7b20
PWGLF/TableProducer/Strangeness/sigma0builder.cxx
@@ -873,9 +873,9 @@ struct sigma0builder {
873
// Calculate properties and fill struct
874
info.DCADau = (cross.Mag2() > 0) ? std::abs(posdiff.Dot(cross)) / cross.R() : 999.f;
875
info.CosPA = v01momentumNorm.Dot(v02momentumNorm);
876
-
877
- float Min_threshold = 1e-5f; // Threshold to consider lines as parallel, can be tuned
878
- if (d < Min_threshold) { // Parallel or nearly parallel lines
+
+ float Min_threshold = 1e-5f; // Threshold to consider lines as parallel, can be tuned
+ if (d < Min_threshold) { // Parallel or nearly parallel lines
879
info.X = info.Y = info.Z = 0.f; // should we use another dummy value? Perhaps 999.f?
880
return info;
881
}
0 commit comments