Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:21

0001 #ifndef DataFormats_TrackReco_SeedStopReason_h
0002 #define DataFormats_TrackReco_SeedStopReason_h
0003 
0004 #include <string>
0005 
0006 enum class SeedStopReason {
0007   UNINITIALIZED = 0,
0008   NOT_STOPPED = 1,
0009   SEED_CLEANING = 2,
0010   NO_TRAJECTORY = 3,
0011   SEED_REGION_REBUILD = 4,
0012   FINAL_CLEAN = 5,
0013   SMOOTHING_FAILED = 6,
0014   SIZE = 7
0015 };
0016 
0017 namespace SeedStopReasonName {
0018   extern const std::string SeedStopReasonName[];
0019 }
0020 
0021 #endif