Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 09:10:02

0001 #ifndef DIM__Shower__Kernel_Key_H
0002 #define DIM__Shower__Kernel_Key_H
0003 
0004 #include <string>
0005 
0006 namespace MODEL {
0007   class Single_Vertex;
0008 }
0009 
0010 namespace DIM {
0011 
0012   class Kernel;
0013 
0014   struct Kernel_Key {
0015 
0016     int m_mode, m_type;
0017     MODEL::Single_Vertex *p_v;
0018     Kernel *p_k;
0019 
0020     Kernel_Key(MODEL::Single_Vertex *const v,
0021            const int mode,const int type):
0022       p_k(NULL), m_mode(mode), m_type(type), p_v(v)
0023     {}
0024 
0025   };// end of struct Kernel_Key
0026 
0027 }// end of namespace DIM
0028 
0029 #endif