Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef SHERPA_Single_Events_Hard_Decays_H
0002 #define SHERPA_Single_Events_Hard_Decays_H
0003 
0004 #include "SHERPA/Single_Events/Event_Phase_Handler.H"
0005 
0006 namespace SHERPA {
0007   class Decay_Handler_Base;
0008 
0009   class Hard_Decays : public Event_Phase_Handler {
0010   private :
0011     Decay_Handler_Base* p_dechandler;
0012   public :
0013     Hard_Decays(Decay_Handler_Base *);
0014     ~Hard_Decays();
0015     ATOOLS::Return_Value::code Treat(ATOOLS::Blob_List*);
0016     void                       CleanUp(const size_t & mode=0);
0017     void                       Finish(const std::string &);
0018   };
0019 }
0020 #endif
0021