/* * UnitsUtil.hh * * Created on: Sep 20, 2016 * Author: nbarros */ #ifndef SRC_UTIL_UNITSUTIL_HH_ #define SRC_UTIL_UNITSUTIL_HH_ #include #include namespace CLHEP { // add a couple more globals to the CLHEP namespace // so that these units can be accessed anywhere static const double minute = 60.*second; static const double min = 60.*second; static const double hour = 60.*minute; static const double h = 60.*minute; static const double day = 24.*hour; static const double year = 365.25*day; static const double yr = 365.25*day; } #endif /* SRC_UTIL_UNITSUTIL_HH_ */