Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef SimTracker_TrackHistory_CMSProcessTypes_h
0002 #define SimTracker_TrackHistory_CMSProcessTypes_h
0003 
0004 //! Struct holding legacy CMS convention for process types
0005 struct CMS {
0006   enum Process {
0007     Undefined = 0,
0008     Unknown,
0009     Primary,
0010     Hadronic,
0011     Decay,
0012     Compton,
0013     Annihilation,
0014     EIoni,
0015     HIoni,
0016     MuIoni,
0017     Photon,
0018     MuPairProd,
0019     Conversions,
0020     EBrem,
0021     SynchrotronRadiation,
0022     MuBrem,
0023     MuNucl
0024   };
0025 };
0026 
0027 #endif