constants.h
337 Bytes
#ifndef STIM_CONSTANTS_H
#define STIM_CONSTANTS_H
#define STIM_PI 3.1415926535897932384626433832795028841971693993751058209749445923078164062862
#define STIM_TAU 2 * STIM_PI
namespace stim{
const double PI = 3.1415926535897932384626433832795028841971693993751058209749445923078164062862;
const double TAU = 2 * stim::PI;
}
#endif