Page MenuHomec4science

my_types.hh
No OneTemporary

File Metadata

Created
Wed, May 1, 19:30

my_types.hh

#ifndef __MY_TYPES_HH__
#define __MY_TYPES_HH__
/* -------------------------------------------------------------------------- */
#include <iostream>
#include <complex>
using UInt = unsigned int;
using Real = double;
using complex = std::complex<Real>;
/* -------------------------------------------------------------------------- */
#define TO_IMPLEMENT \
{ \
std::cerr << std::endl \
<< std::endl \
<< "*********************************************************\n" \
<< "To be filled @ " << __FILE__ << ":" << __LINE__ << std::endl \
<< "*********************************************************\n" \
<< std::endl \
<< std::endl; \
throw; \
}
/* -------------------------------------------------------------------------- */
#endif /* __MY_TYPES_HH__ */

Event Timeline