Go to the source code of this file.
|
| | enumeration to decode - for Extrapolation steering More...
|
| | templated class to record the different possible entities during extrapolation More...
|
| | templated class as an input-output object of the extrapolation, only public members, since it is a container class More...
|
|
| namespace | Trk |
| | Ensure that the ATLAS eigen extensions are properly loaded.
|
◆ reachedLimit
| #define reachedLimit |
( |
| current, |
|
|
| limit, |
|
|
| tolerance ) |
Value: ((limit) > 0 && \
(((current) < (limit)) \
? ((current) - (limit)) * ((current) - (limit)) / ((limit) * (limit)) < \
: true))
Definition at line 24 of file ExtrapolationCell.h.
24#define reachedLimit(current, limit, tolerance) \
25 ((limit) > 0 && \
26 (((current) < (limit)) \
27 ? ((current) - (limit)) * ((current) - (limit)) / ((limit) * (limit)) < \
28 (tolerance) * (tolerance) \
29 : true))
◆ TRKEXUTILS_CHECKPATHMACRO
| #define TRKEXUTILS_CHECKPATHMACRO |