Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #include "DataFormats/TrackReco/interface/SeedStopReason.h"
0002 
0003 const std::string SeedStopReasonName::SeedStopReasonName[] = {
0004     "UNINITIALIZED",        // 0
0005     "NOT_STOPPED",          // 1
0006     "SEED_CLEANING",        // 2
0007     "NO_TRAJECTORY",        // 3
0008     "SEED_REGION_REBUILD",  // 4
0009     "FINAL_CLEAN",          // 5
0010     "SMOOTHING_FAILED"      // 6
0011 };
0012 
0013 static_assert(sizeof(SeedStopReasonName::SeedStopReasonName) / sizeof(std::string) ==
0014                   static_cast<unsigned int>(SeedStopReason::SIZE),
0015               "SeedStopReason enum and SeedStopReasonName are out of synch");