We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e65300a commit 6e36f2bCopy full SHA for 6e36f2b
1 file changed
DataFormats/Reconstruction/src/TrackParametrizationWithError.cxx
@@ -30,8 +30,10 @@
30
31
#ifndef GPUCA_GPUCODE_DEVICE
32
#include <iostream>
33
+#ifndef GPUCA_STANDALONE
34
#include "Math/SMatrix.h"
35
#endif
36
+#endif
37
38
#ifndef GPUCA_ALIGPUCODE
39
#include <fmt/printf.h>
@@ -688,7 +690,7 @@ GPUd() typename TrackParametrizationWithError<value_T>::value_t TrackParametriza
688
690
return (d * (szz * d - sdz * z) + z * (sdd * z - d * sdz)) / det;
689
691
}
692
-#ifndef GPUCA_GPUCODE // Disable function relying on ROOT SMatrix on GPU
693
+#if !defined(GPUCA_GPUCODE) && !defined(GPUCA_STANDALONE) // Disable function relying on ROOT SMatrix on GPU
694
695
//______________________________________________
696
template <typename value_T>
0 commit comments