23#ifndef GPUCA_GPUCODE_DEVICE
27#ifndef GPUCA_ALIGPUCODE
28#include <fmt/printf.h>
35template <
typename value_T>
37 : mX{0.f}, mAlpha{0.f}, mP{0.f}
48 value_t radPos2 = xyz[0] * xyz[0] + xyz[1] * xyz[1];
50 if (sectorAlpha || radPos2 < 1) {
51 alp = gpu::CAMath::ATan2(pxpypz[1], pxpypz[0]);
53 alp = gpu::CAMath::ATan2(xyz[1], xyz[0]);
56 alp = math_utils::detail::angle2Alpha<value_t>(alp);
60 math_utils::detail::sincos(alp, sn, cs);
62 if (cs * pxpypz[0] + sn * pxpypz[1] < 0) {
63 LOG(
debug) <<
"alpha from phiPos() will invalidate this track parameters, overriding to alpha from phi()";
64 alp = gpu::CAMath::ATan2(pxpypz[1], pxpypz[0]);
66 alp = math_utils::detail::angle2Alpha<value_t>(alp);
68 math_utils::detail::sincos(alp, sn, cs);
72 if (gpu::CAMath::Abs(sn) < 2 * kSafe) {
74 alp += alp < constants::math::PIHalf ? 2 * kSafe : -2 * kSafe;
76 alp += alp > -constants::math::PIHalf ? -2 * kSafe : 2 * kSafe;
78 math_utils::detail::sincos(alp, sn, cs);
79 }
else if (gpu::CAMath::Abs(cs) < 2 * kSafe) {
81 alp += alp > constants::math::PIHalf ? 2 * kSafe : -2 * kSafe;
83 alp += alp > -constants::math::PIHalf ? 2 * kSafe : -2 * kSafe;
85 math_utils::detail::sincos(alp, sn, cs);
88 dim3_t ver{xyz[0], xyz[1], xyz[2]};
89 dim3_t mom{pxpypz[0], pxpypz[1], pxpypz[2]};
92 math_utils::detail::rotateZ<value_t>(ver, -alp);
93 math_utils::detail::rotateZ<value_t>(mom, -alp);
95 value_t ptI = 1.f / gpu::CAMath::Sqrt(mom[0] * mom[0] + mom[1] * mom[1]);
100 mP[
kSnp] = mom[1] * ptI;
101 mP[
kTgl] = mom[2] * ptI;
102 mAbsCharge = gpu::CAMath::Abs(
charge);
106 if (gpu::CAMath::Abs(1 - getSnp()) < kSafe) {
107 mP[
kSnp] = 1.f - kSafe;
108 }
else if (gpu::CAMath::Abs(-1 - getSnp()) < kSafe) {
109 mP[
kSnp] = -1.f + kSafe;
115template <
typename value_T>
119 if (gpu::CAMath::Abs(getQ2Pt()) < constants::math::Almost0 || gpu::CAMath::Abs(getSnp()) > constants::math::Almost1) {
123 value_t r = gpu::CAMath::Sqrt((1.f - getSnp()) * (1.f + getSnp()));
124 math_utils::detail::sincos(getAlpha(), sn, cs);
125 pxyz[0] = pt * (
r * cs - getSnp() * sn);
126 pxyz[1] = pt * (getSnp() * cs +
r * sn);
127 pxyz[2] = pt * getTgl();
132template <
typename value_T>
138 if (gpu::CAMath::Abs(snp) > constants::math::Almost1) {
141 value_t &sn = posdirp[7], &cs = posdirp[8];
142 value_t csp = gpu::CAMath::Sqrt((1.f - snp) * (1.f + snp));
143 value_t cstht = gpu::CAMath::Sqrt(1.f + getTgl() * getTgl());
145 math_utils::detail::sincos(getAlpha(), sn, cs);
146 posdirp[0] =
getX() * cs -
getY() * sn;
147 posdirp[1] =
getX() * sn +
getY() * cs;
149 posdirp[3] = (csp * cs - snp * sn) * csthti;
150 posdirp[4] = (snp * cs + csp * sn) * csthti;
151 posdirp[5] = getTgl() * csthti;
152 posdirp[6] = cstht / ptI;
157template <
typename value_T>
161 if (gpu::CAMath::Abs(getSnp()) > constants::math::Almost1) {
162 LOGP(
debug,
"Precondition is not satisfied: |sin(phi)|>1 ! {:f}", getSnp());
166 math_utils::detail::bringToPMPi<value_t>(
alpha);
169 math_utils::detail::sincos(
alpha - getAlpha(), sa, ca);
170 value_t snp = getSnp(), csp = gpu::CAMath::Sqrt((1.f - snp) * (1.f + snp));
173 if ((csp * ca + snp * sa) < 0) {
178 value_t tmp = snp * ca - csp * sa;
179 if (gpu::CAMath::Abs(tmp) > constants::math::Almost1) {
180 LOGP(
debug,
"Rotation failed: new snp {:.2f}", tmp);
185 mX = xold * ca + yold * sa;
186 mP[
kY] = -xold * sa + yold * ca;
192template <
typename value_T>
196 if (gpu::CAMath::Abs(getSnp()) > constants::math::Almost1) {
197 LOGP(
debug,
"Precondition is not satisfied: |sin(phi)|>1 ! {:f}", getSnp());
201 math_utils::detail::bringToPMPi<value_t>(
alpha);
202 math_utils::detail::sincos(
alpha - getAlpha(), sa, ca);
203 value_t snp = getSnp(), csp = gpu::CAMath::Sqrt((1.f - snp) * (1.f + snp));
205 if ((csp * ca + snp * sa) < 0) {
210 value_t tmp = snp * ca - csp * sa;
211 if (gpu::CAMath::Abs(tmp) > constants::math::Almost1) {
212 LOGP(
debug,
"Rotation failed: new snp {:.2f}", tmp);
217 mX = xold * ca + yold * sa;
218 mP[
kY] = -xold * sa + yold * ca;
224template <
typename value_T>
234 if (gpu::CAMath::Abs(dx) < constants::math::Almost0) {
238 if (gpu::CAMath::Abs(dx) > 1e5 || gpu::CAMath::Abs(
getY()) > 1e5 || gpu::CAMath::Abs(getZ()) > 1e5) {
239 LOG(warning) <<
"Anomalous track, traget X:" << xk;
244 return propagateParamTo(xk, 0.);
249 if (gpu::CAMath::Abs(
f1) > constants::math::Almost1 || gpu::CAMath::Abs(
f2) > constants::math::Almost1) {
252 value_t r1 = gpu::CAMath::Sqrt((1.f -
f1) * (1.f +
f1));
253 if (gpu::CAMath::Abs(r1) < constants::math::Almost0) {
256 value_t r2 = gpu::CAMath::Sqrt((1.f -
f2) * (1.f +
f2));
257 if (gpu::CAMath::Abs(r2) < constants::math::Almost0) {
261 value_t step = (gpu::CAMath::Abs(x2r) < 0.05f) ? dx * gpu::CAMath::Abs(r2 +
f2 * dy2dx)
262 : 2.f * CAMath::ASin(0.5f * dx * gpu::CAMath::Sqrt(1.f + dy2dx * dy2dx) * crv) / crv;
263 step *= gpu::CAMath::Sqrt(1.f + getTgl() * getTgl());
266 std::array<value_t, 9> vecLab{0.f};
267 if (!getPosDirGlo(vecLab)) {
273 value_t bt = gpu::CAMath::Sqrt(bxy2);
274 value_t cosphi = 1.f, sinphi = 0.f;
275 if (bt > constants::math::Almost0) {
279 value_t bb = gpu::CAMath::Sqrt(bxy2 +
b[2] *
b[2]);
280 value_t costet = 1.f, sintet = 0.f;
281 if (
bb > constants::math::Almost0) {
285 std::array<value_t, 7>
vect{costet * cosphi * vecLab[0] + costet * sinphi * vecLab[1] - sintet * vecLab[2],
286 -sinphi * vecLab[0] + cosphi * vecLab[1],
287 sintet * cosphi * vecLab[0] + sintet * sinphi * vecLab[1] + costet * vecLab[2],
288 costet * cosphi * vecLab[3] + costet * sinphi * vecLab[4] - sintet * vecLab[5],
289 -sinphi * vecLab[3] + cosphi * vecLab[4],
290 sintet * cosphi * vecLab[3] + sintet * sinphi * vecLab[4] + costet * vecLab[5],
298 vecLab[0] = cosphi * costet *
vect[0] - sinphi *
vect[1] + cosphi * sintet *
vect[2];
299 vecLab[1] = sinphi * costet *
vect[0] + cosphi *
vect[1] + sinphi * sintet *
vect[2];
300 vecLab[2] = -sintet *
vect[0] + costet *
vect[2];
302 vecLab[3] = cosphi * costet *
vect[3] - sinphi *
vect[4] + cosphi * sintet *
vect[5];
303 vecLab[4] = sinphi * costet *
vect[3] + cosphi *
vect[4] + sinphi * sintet *
vect[5];
304 vecLab[5] = -sintet *
vect[3] + costet *
vect[5];
307 value_t sinalp = -vecLab[7], cosalp = vecLab[8];
308 value_t t = cosalp * vecLab[0] - sinalp * vecLab[1];
309 vecLab[1] = sinalp * vecLab[0] + cosalp * vecLab[1];
311 t = cosalp * vecLab[3] - sinalp * vecLab[4];
312 vecLab[4] = sinalp * vecLab[3] + cosalp * vecLab[4];
316 value_t x = vecLab[0],
y = vecLab[1],
z = vecLab[2];
317 if (gpu::CAMath::Abs(dx) > constants::math::Almost0) {
318 if (gpu::CAMath::Abs(vecLab[3]) < constants::math::Almost0) {
323 y += vecLab[4] / vecLab[3] * dx;
324 z += vecLab[5] / vecLab[3] * dx;
328 t = 1.f / gpu::CAMath::Sqrt(vecLab[3] * vecLab[3] + vecLab[4] * vecLab[4]);
332 mP[
kSnp] = vecLab[4] * t;
333 mP[
kTgl] = vecLab[5] * t;
334 mP[
kQ2Pt] = q * t / vecLab[6];
340template <
typename value_T>
349 if (gpu::CAMath::Abs(dx) < constants::math::Almost0) {
352 value_t crv = (gpu::CAMath::Abs(
b) < constants::math::Almost0) ? 0.f : getCurvature(
b);
355 if ((gpu::CAMath::Abs(
f1) > constants::math::Almost1) || (gpu::CAMath::Abs(
f2) > constants::math::Almost1)) {
358 value_t r1 = gpu::CAMath::Sqrt((1.f -
f1) * (1.f +
f1));
359 if (gpu::CAMath::Abs(r1) < constants::math::Almost0) {
362 value_t r2 = gpu::CAMath::Sqrt((1.f -
f2) * (1.f +
f2));
363 if (gpu::CAMath::Abs(r2) < constants::math::Almost0) {
366 double dy2dx = (
f1 +
f2) / (r1 + r2);
367 bool arcz = gpu::CAMath::Abs(x2r) > 0.05f;
377 auto arg = r1 *
f2 - r2 *
f1;
378 if (gpu::CAMath::Abs(arg) > constants::math::Almost1) {
381 value_t rot = CAMath::ASin(arg);
384 rot = constants::math::PI - rot;
386 rot = -constants::math::PI - rot;
389 mP[
kZ] += getTgl() / crv * rot;
391 mP[
kZ] += dx * (r2 +
f2 * dy2dx) * getTgl();
394 mP[
kY] += dx * dy2dx;
400template <
typename value_T>
404 value_t sn, cs, alp = getAlpha();
405 math_utils::detail::sincos(alp, sn, cs);
406 value_t x =
getX(),
y =
getY(), snp = getSnp(), csp = gpu::CAMath::Sqrt((1.f - snp) * (1.f + snp));
407 value_t xv = vtx.X() * cs + vtx.Y() * sn, yv = -vtx.X() * sn + vtx.Y() * cs, zv = vtx.Z();
411 value_t d = gpu::CAMath::Abs(
x * snp -
y * csp);
420 value_t tgfv = -(crv *
x - snp) / (crv *
y + csp);
421 sn = tgfv / gpu::CAMath::Sqrt(1.f + tgfv * tgfv);
422 cs = gpu::CAMath::Sqrt((1.f - sn) * (1.f + sn));
423 cs = (gpu::CAMath::Abs(tgfv) > constants::math::Almost0) ? sn / tgfv : constants::math::
Almost1;
425 x = xv * cs + yv * sn;
426 yv = -xv * sn + yv * cs;
430 alp += gpu::CAMath::ASin(sn);
431 if (!tmpT.rotateParam(alp) || !tmpT.propagateParamTo(xv,
b)) {
432#ifndef GPUCA_ALIGPUCODE
433 LOG(
debug) <<
"failed to propagate to alpha=" << alp <<
" X=" << xv <<
" for vertex "
434 << vtx.X() <<
' ' << vtx.Y() <<
' ' << vtx.Z() <<
" | Track is: " << tmpT.asString();
436 LOG(
debug) <<
"failed to propagate to alpha=" << alp <<
" X=" << xv <<
" for vertex " << vtx.X() <<
' ' << vtx.Y() <<
' ' << vtx.Z();
446 (*dca)[0] =
getY() - yv;
447 (*dca)[1] = getZ() - zv;
453template <
typename value_T>
462 if (gpu::CAMath::Abs(dx) < constants::math::Almost0) {
468 if ((gpu::CAMath::Abs(
f1) > constants::math::Almost1) || (gpu::CAMath::Abs(
f2) > constants::math::Almost1)) {
471 value_t r1 = gpu::CAMath::Sqrt((1.f -
f1) * (1.f +
f1));
472 if (gpu::CAMath::Abs(r1) < constants::math::Almost0) {
475 value_t r2 = gpu::CAMath::Sqrt((1.f -
f2) * (1.f +
f2));
476 if (gpu::CAMath::Abs(r2) < constants::math::Almost0) {
479 double dy2dx = (
f1 +
f2) / (r1 + r2);
481 if (gpu::CAMath::Abs(x2r) < 0.05f) {
482 z += dx * (r2 +
f2 * dy2dx) * getTgl();
495 rot = constants::math::PI - rot;
497 rot = -constants::math::PI - rot;
500 z += getTgl() / crv * rot;
506template <
typename value_T>
511 mAlpha += constants::math::PI;
512 math_utils::detail::bringToPMPi<value_t>(mAlpha);
521template <
typename value_T>
526 return getYZAt(xk,
b,
y,
z) ?
z : -9999.f;
530template <
typename value_T>
535 return getYZAt(xk,
b,
y,
z) ?
y : -9999.f;
539template <
typename value_T>
544 if (gpu::CAMath::Abs(dx) < constants::math::Almost0) {
547 value_t crv = (gpu::CAMath::Abs(
b) < constants::math::Almost0) ? 0.f : getCurvature(
b);
549 return mP[
kSnp] + x2r;
553template <
typename value_T>
558 if (gpu::CAMath::Abs(dx) < constants::math::Almost0) {
561 value_t crv = (gpu::CAMath::Abs(
b) < constants::math::Almost0) ? 0.f : getCurvature(
b);
565 if (gpu::CAMath::Abs(snp) < constants::math::Almost1) {
566 phi = gpu::CAMath::ASin(snp) + getAlpha();
567 math_utils::detail::bringTo02Pi<value_t>(phi);
573template <
typename value_T>
578 auto y = getYAt(xk,
b);
580 phi = gpu::CAMath::ATan2(
y, xk) + getAlpha();
581 math_utils::detail::bringTo02Pi<value_t>(phi);
587template <
typename value_T>
591 math_utils::detail::bringToPMPi<value_t>(
alpha);
593 math_utils::detail::sincos(
alpha - getAlpha(), sa, ca);
594 value_t snp = getSnp(), csp = gpu::CAMath::Sqrt((1.f - snp) * (1.f + snp));
596 if ((csp * ca + snp * sa) < 0.) {
600 value_t tmp = snp * ca - csp * sa;
601 if (gpu::CAMath::Abs(tmp) > constants::math::Almost1) {
602 LOGP(
debug,
"Rotation failed: new snp {:.2f}", tmp);
607 value_t crv = (gpu::CAMath::Abs(
b) < constants::math::Almost0) ? 0.f : getCurvature(
b);
612#ifndef GPUCA_ALIGPUCODE
614template <
typename value_T>
618 return fmt::format(
"X:{:+.4e} Alp:{:+.3e} Par: {:+.4e} {:+.4e} {:+.4e} {:+.4e} {:+.4e} |Q|:{:d} {:s}",
619 getX(), getAlpha(),
getY(), getZ(), getSnp(), getTgl(), getQ2Pt(), getAbsCharge(), getPID().
getName());
623template <
typename value_T>
627 auto _Alpha = getAlpha();
630 auto _Snp = getSnp();
631 auto _Tgl = getTgl();
632 float _Q2Pt = getQ2Pt();
633 float _AbsCharge = getAbsCharge();
635 return fmt::format(
"X:{:x} Alp:{:x} Par: {:x} {:x} {:x} {:x} {:x} |Q|:{:x} {:s}\n",
636 reinterpret_cast<const unsigned int&
>(_X),
637 reinterpret_cast<const unsigned int&
>(_Alpha),
638 reinterpret_cast<const unsigned int&
>(_Y),
639 reinterpret_cast<const unsigned int&
>(_Z),
640 reinterpret_cast<const unsigned int&
>(_Snp),
641 reinterpret_cast<const unsigned int&
>(_Tgl),
642 reinterpret_cast<const unsigned int&
>(_Q2Pt),
643 reinterpret_cast<const unsigned int&
>(_AbsCharge),
649template <
typename value_T>
653#ifndef GPUCA_ALIGPUCODE
655#elif !defined(GPUCA_GPUCODE_DEVICE) || (!defined(__OPENCL__) && defined(GPUCA_GPU_DEBUG_PRINT))
656 printf(
"X:%+.4e Alp:%+.3e Par: %+.4e %+.4e %+.4e %+.4e %+.4e |Q|:%d %s\n",
657 getX(), getAlpha(),
getY(), getZ(), getSnp(), getTgl(), getQ2Pt(), getAbsCharge(), getPID().
getName());
662template <
typename value_T>
666#ifndef GPUCA_ALIGPUCODE
667 printf(
"%s\n", asStringHexadecimal().c_str());
668#elif !defined(GPUCA_GPUCODE_DEVICE) || (!defined(__OPENCL__) && defined(GPUCA_GPU_DEBUG_PRINT))
669 printf(
"X:%x Alp:%x Par: %x %x %x %x %x |Q|:%x %s\n",
670 gpu::CAMath::Float2UIntReint(
getX()),
671 gpu::CAMath::Float2UIntReint(getAlpha()),
672 gpu::CAMath::Float2UIntReint(
getY()),
673 gpu::CAMath::Float2UIntReint(getZ()),
674 gpu::CAMath::Float2UIntReint(getSnp()),
675 gpu::CAMath::Float2UIntReint(getTgl()),
676 gpu::CAMath::Float2UIntReint(getQ2Pt()),
677 gpu::CAMath::Float2UIntReint(getAbsCharge()),
683template <
typename value_T>
694 const double fy = mP[0], sn = mP[2];
697 if (gpu::CAMath::Abs(getSnp()) > constants::math::Almost1) {
700 auto crv = getCurvature(bz);
701 while (gpu::CAMath::Abs(crv) > constants::math::Almost0) {
704 getCircleParamsLoc(bz, circle);
705 if (circle.rC == 0.) {
709 value_t r0 = gpu::CAMath::Sqrt(circle.getCenterD2());
710 if (r0 <= constants::math::Almost0) {
713 double tR2r0 = 1.,
g = 0., tmp = 0.;
714 if (gpu::CAMath::Abs(circle.rC - r0) > kEps) {
715 tR2r0 = circle.rC / r0;
716 g = 0.5f * (
r *
r / (r0 * circle.rC) - tR2r0 - 1.f / tR2r0);
717 tmp = 1.f +
g * tR2r0;
720 g = 0.5 *
r *
r / (r0 * circle.rC) - 1.;
721 tmp = 0.5 *
r *
r / (r0 * r0);
723 auto det = (1. -
g) * (1. +
g);
727 det = gpu::CAMath::Sqrt(det);
734 auto y = circle.yC * tmp;
735 if (gpu::CAMath::Abs(circle.yC) > constants::math::Almost0) {
736 auto dfx = tR2r0 * gpu::CAMath::Abs(circle.yC) * det;
737 auto dfy = tR2r0 * circle.xC * (circle.yC > 0. ? det : -det);
739 auto delta = (
x - mX) * dfx - (
y - fy) * dfy;
740 x += delta < 0. ? dfx : -dfx;
747 if (gpu::CAMath::Abs(dfeps) < kEps && gpu::CAMath::Abs(mX * mX + fy * fy -
r *
r) < kEps) {
755 }
else if (dxm < -kEps) {
765 if (gpu::CAMath::Abs(dfeps) < kEps && gpu::CAMath::Abs(mX * mX + fy * fy -
r *
r) < kEps) {
787 if (gpu::CAMath::Abs(sn) >= constants::math::Almost1) {
788 double det = (
r - mX) * (
r + mX);
796 det = gpu::CAMath::Sqrt(det);
812 }
else if (fy > det) {
816 }
else if (gpu::CAMath::Abs(sn) <= constants::math::Almost0) {
817 double det = (
r - fy) * (
r + fy);
821 det = gpu::CAMath::Sqrt(det);
823 x = mX > 0. ? det : -det;
829 x = (mX < -det) ? -det : det;
835 x = mX > det ? det : -det;
839 auto cs = gpu::CAMath::Sqrt((1. - sn) * (1. + sn));
840 auto xsyc = mX * sn - fy * cs;
841 auto det = (
r - xsyc) * (
r + xsyc);
845 det = gpu::CAMath::Sqrt(det);
846 auto xcys = mX * cs + fy * sn;
849 t += t > 0. ? -det : det;
850 }
else if (dir > 0) {
870template <
typename value_T>
881 constexpr value_t kMinP = 0.01f;
883 auto m = getPID().getMass();
884 if (
m > 0 && xrho != 0.f) {
887 value_t csp2 = (1.f - getSnp()) * (1.f + getSnp());
888 value_t cst2I = (1.f + getTgl() * getTgl());
892 int charge2 = getAbsCharge() * getAbsCharge();
893 value_t p = getP(),
p0 =
p,
p2 =
p *
p, e2 =
p2 + getPID().getMass2(), massInv = 1. /
m,
bg =
p * massInv;
894 value_t e = gpu::CAMath::Sqrt(e2), ekin = e -
m,
dedx = getdEdxBBOpt(
bg);
895#ifdef _BB_NONCONST_CORR_
909#ifdef _BB_NONCONST_CORR_
910 dedxDer = getBetheBlochSolidDerivativeApprox(dedx1,
bg);
917#ifdef _BB_NONCONST_CORR_
922 auto corrC = (gpu::CAMath::Exp(dedxDer) - 1.) / dedxDer;
928 p = gpu::CAMath::Sqrt(e * e - getPID().getMass2());
935#ifdef _BB_NONCONST_CORR_
936 dedxDer = getBetheBlochSolidDerivativeApprox(
dedx,
bg);
940#ifdef _BB_NONCONST_CORR_
951 setQ2Pt(getQ2Pt() * p0 / p);
958template <
typename value_T>
963 math_utils::detail::sincos(-mAlpha, sn, cs);
964 value_t sn2 = sn * sn, cs2 = cs * cs, sncs = sn * cs;
965 value_t dsxysncs = 2. *
v.getSigmaXY() * sncs;
966 return {{
v.getX() * sn +
v.getY() * cs,
v.getZ()},
967 {
v.getSigmaX2() * sn2 + dsxysncs +
v.getSigmaY2() * cs2, (sn + cs) *
v.getSigmaYZ(),
v.getSigmaZ2()}};
971template <
typename value_T>
976 return ttmp.propagateParamToDCA({xmv, ymv, zmv},
b, &dca) ? dca[0] : -9999.;
980template <
typename value_T>
985 return ttmp.propagateParamToDCA({xmv, ymv, zmv},
b, &dca) ? dca[1] : -9999.;
990#if !defined(GPUCA_GPUCODE) || defined(GPUCA_GPUCODE_DEVICE)
std::string getName(const TDataMember *dm, int index, int size)
std::string asString(TDataMember const &dm, char *pointer)
std::string asStringHexadecimal()
std::string asString() const
GLfloat GLfloat GLfloat alpha
GLboolean GLboolean GLboolean b
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLdouble GLdouble GLdouble z
typename trackParam_t::dim3_t dim3_t
typename trackParam_t::dim2_t dim2_t
typename trackParam_t::value_t value_t
double * getX(double *xyDxy, int N)
double * getY(double *xyDxy, int N)
value_T std::array< value_T, 7 > & vect
GPUd() value_T BetheBlochSolid(value_T bg
constexpr float DefaultDCA
constexpr int MaxELossIter
constexpr float ELoss2EKinThreshInv
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Defining DataPointCompositeObject explicitly as copiable.
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"