https://github.com/N-BodyShop/changa
Raw File
Tip revision: 2307e2b983d49edec309a23c356b6664eca1d087 authored by Tim Haines on 29 July 2016, 01:57:42 UTC
Document meaning of momFloat.
Tip revision: 2307e2b
cosmoType.h
#ifndef __COSMOTYPE_H__
#define __COSMOTYPE_H__

/* #define COSMO_FLOAT */

#ifdef COSMO_FLOAT
#define CONVERT_TO_COSMO_TYPE (float)
typedef float cosmoType;
#define COSMO_CONST(val) val##f
#else
#define CONVERT_TO_COSMO_TYPE
typedef double cosmoType;
#define COSMO_CONST(val) val
#endif

#endif
back to top