CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrajectoryStopReasons.h
Go to the documentation of this file.
1 #ifndef TRAJECTORYSTOPREASONS_H
2 #define TRAJECTORYSTOPREASONS_H
3 
4 enum class StopReason {
5  UNINITIALIZED = 0,
6  MAX_HITS = 1,
7  MAX_LOST_HITS = 2,
10  MIN_PT = 5,
12  LOOPER = 7,
15  NOT_STOPPED = 255 // this is the max allowed since it will be streamed as type uint8_t
16 };
17 
18 #endif