QTrk
scalar_types.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <complex>
4 #include <vector>
5 
6 //#ifdef TRK_USE_DOUBLE
7 // typedef double scalar_t;
8 //#else
9  typedef float scalar_t;
10 //#endif
11 
12 typedef std::complex<scalar_t> complex_t;
13 
14 
15 
float scalar_t
Definition: scalar_types.h:9
std::complex< scalar_t > complex_t
Definition: scalar_types.h:12