File indexing completed on 2025-04-19 09:10:10
0001 #ifndef PHASIC_Main_Channel_Creator_H
0002 #define PHASIC_Main_Channel_Creator_H
0003
0004 #include "ATOOLS/Org/CXXFLAGS.H"
0005
0006 namespace PHASIC {
0007 class Phase_Space_Handler;
0008 class Channel_Creator {
0009 private:
0010 Phase_Space_Handler * p_psh;
0011
0012 bool CreateBeamIntegrator();
0013 bool CreateISRIntegrator();
0014 bool CreateFSRIntegrator();
0015 public:
0016 Channel_Creator(Phase_Space_Handler * psh);
0017 ~Channel_Creator();
0018
0019 bool operator()();
0020 };
0021 }
0022 #endif