Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Detectors/Base/src/Propagator.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ bool Propagator::propagateToDCA(const o2::dataformats::VertexBase& vtx, o2::trac
x -= xv;
y -= yv;
//Estimate the impact parameter neglecting the track curvature
Double_t d = std::abs(x * snp - y * csp);
float d = std::abs(x * snp - y * csp);
if (d > maxD) {
return false;
}
Expand Down Expand Up @@ -391,7 +391,7 @@ bool Propagator::propagateToDCABxByBz(const o2::dataformats::VertexBase& vtx, o2
x -= xv;
y -= yv;
//Estimate the impact parameter neglecting the track curvature
Double_t d = std::abs(x * snp - y * csp);
float d = std::abs(x * snp - y * csp);
if (d > maxD) {
return false;
}
Expand Down Expand Up @@ -436,7 +436,7 @@ bool Propagator::propagateToDCA(const math_utils::Point3D<float>& vtx, o2::track
x -= xv;
y -= yv;
//Estimate the impact parameter neglecting the track curvature
Double_t d = std::abs(x * snp - y * csp);
float d = std::abs(x * snp - y * csp);
if (d > maxD) {
return false;
}
Expand Down Expand Up @@ -480,7 +480,7 @@ bool Propagator::propagateToDCABxByBz(const math_utils::Point3D<float>& vtx, o2:
x -= xv;
y -= yv;
//Estimate the impact parameter neglecting the track curvature
Double_t d = std::abs(x * snp - y * csp);
float d = std::abs(x * snp - y * csp);
if (d > maxD) {
return false;
}
Expand Down