https://github.com/N-BodyShop/changa
Raw File
Tip revision: 212580b853a7863a7a6b111cce2994dfd83150da authored by Harshitha on 17 February 2016, 05:39:14 UTC
Reset the background load in HierarchOrbLB because we don't use that for LB
Tip revision: 212580b
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