IMP logo
IMP Reference Guide  develop.d4e9f3251e,2024/04/26
The Integrative Modeling Platform
npctransport/enums.h
Go to the documentation of this file.
1 /**
2 # * \file npctransport/enums.h
3 # * \brief useful enums and constants
4 
5 #
6 # * Copyright 2007-2022 IMP Inventors. All rights reserved.
7 # */
8 
9 #ifndef IMPNPCTRANSPORT_ENUMS_H
10 #define IMPNPCTRANSPORT_ENUMS_H
11 
12 #include "npctransport_config.h"
13 #include <limits>
14 
15 IMPNPCTRANSPORT_BEGIN_NAMESPACE
16 
17 const double FS_IN_NS = 1.0E+6;
18 
19 const double MAX_DOUBLE = std::numeric_limits< double >::max();
20 
21 const double HALF_SQRT_MAX_DOUBLE = 0.5 * std::sqrt( MAX_DOUBLE );
22 
23 IMPNPCTRANSPORT_END_NAMESPACE
24 
25 
26 #endif /* IMPNPCTRANSPORT_ENUMS_H */