LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
MCLimits.h
Go to the documentation of this file.
1 
2 #ifndef MCLIMITS_H
3 #define MCLIMITS_H
4 
5 #include <climits>
6 #include <limits>
7 
8 namespace sim {
9 
10  const double kINVALID_DOUBLE = std::numeric_limits<double>::max();
11 
12  const float kINVALID_FLOAT = std::numeric_limits<float>::max();
13 
14  const unsigned int kINVALID_UINT = std::numeric_limits<unsigned int>::max();
15 
16  const int kINVALID_INT = std::numeric_limits<int>::max();
17 
18 }
19 
20 #endif
const double kINVALID_DOUBLE
Definition: MCLimits.h:10
const int kINVALID_INT
Definition: MCLimits.h:16
Monte Carlo Simulation.
const unsigned int kINVALID_UINT
Definition: MCLimits.h:14
const float kINVALID_FLOAT
Definition: MCLimits.h:12