/** * \file CbmLitFloat.h * \author Andrey Lebedev * \date 2009 * \brief Define floating point number type litfloat. * * Define type for floating point number in littrack. * litfloat is either float or double. * This helps easily switch between different floating point number types. **/ #ifndef CBMLITFLOAT_H_ #define CBMLITFLOAT_H_ typedef double litfloat; #endif /* CBMLITFLOAT_H_ */