Skip to content

Commit 5c367c1

Browse files
committed
Minor
1 parent e0bf0b3 commit 5c367c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Detectors/Upgrades/ALICE3/TRK/simulation/include/TRKSimulation/TRKLayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class TRKOTLayer : public TRKSegmentedLayer
149149
// Override to account for the staggering offset present in OT layers
150150
std::pair<float, float> getBoundingRadii(double staveWidth) const override;
151151

152-
ClassDefOverride(TRKOTLayer, 0)
152+
ClassDefOverride(TRKOTLayer, 0);
153153
};
154154

155155
} // namespace trk

Detectors/Upgrades/ALICE3/TRK/simulation/src/TRKLayer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ std::pair<float, float> TRKSegmentedLayer::getBoundingRadii(double staveWidth) c
233233
radiusMin = std::sqrt(u_min * u_min + perpDistance * perpDistance);
234234
}
235235

236-
// Add a 10-micron safety margin to prevent false-positive overlaps in ROOT's geometry checker caused by floating-point inaccuracies
236+
// Add a 0.5 mm safety margin to prevent false-positive overlaps in ROOT's geometry checker caused by floating-point inaccuracies
237237
const float precisionMargin = 0.05f;
238238

239239
return {radiusMin - precisionMargin, radiusMax + precisionMargin};

0 commit comments

Comments
 (0)