#include <AltEInteractionType.h>
Public Types | |
| typedef enum AltEInteractionType::EInteractionType | InteractionType_t |
| enum | EInteractionType { eUnspecified = 0, eNuQES = 1, eNuSPP = 2, eNuDIS = 3 } |
Static Public Member Functions | |
| const char * | asString (InteractionType_t interaction) |
|
|
|
|
|
Definition at line 25 of file AltEInteractionType.h. 00025 {
00026 eUnspecified = 0,
00027 eNuQES = 1,
00028 eNuSPP = 2,
00029 eNuDIS = 3
00030 } InteractionType_t;
|
|
|
Definition at line 32 of file AltEInteractionType.h. 00032 {
00033 switch(interaction) {
00034 case eUnspecified : return "unspecified"; break;
00035 case eNuQES : return "neutrino quasi-elastic scattering"; break;
00036 case eNuSPP : return "neutrino single pion production"; break;
00037 case eNuDIS : return "neutrino deep inelastic scattering"; break;
00038 }
00039 return "unkwown enumeration";
00040 }
|
1.3.9.1