File indexing completed on 2025-04-19 09:10:04
0001 #ifndef HADRONS_ME_Library_Generic_H
0002 #define HADRONS_ME_Library_Generic_H
0003
0004 #include "HADRONS++/ME_Library/HD_ME_Base.H"
0005
0006 namespace METOOLS {
0007 class Partial_Amplitude_Base;
0008 }
0009
0010 namespace HADRONS {
0011
0012 class Generic : public HD_ME_Base {
0013 METOOLS::Partial_Amplitude_Base * p_me;
0014 public:
0015 Generic(const ATOOLS::Flavour_Vector& flavs,
0016 const std::vector<int>& decayindices,
0017 const std::string& name);
0018 ~Generic();
0019 void Calculate(const ATOOLS::Vec4D_Vector& moms, bool anti=false);
0020 };
0021 }
0022 #endif