File indexing completed on 2025-04-19 09:10:04
0001 #ifndef HADRONS_ME_Library_Two_Body_MEs_H
0002 #define HADRONS_ME_Library_Two_Body_MEs_H
0003
0004 #include "HADRONS++/ME_Library/HD_ME_Base.H"
0005
0006 namespace HADRONS {
0007
0008 class Baryon_Diquark_Quark : public HD_ME_Base {
0009 double m_Vxx_decay, m_Vxx_production;
0010 double m_GF;
0011 public:
0012 Baryon_Diquark_Quark(const ATOOLS::Flavour_Vector& flavs,
0013 const std::vector<int>& decayindices,
0014 const std::string& name):
0015 HD_ME_Base(flavs,decayindices,name) {};
0016 void Calculate(const ATOOLS::Vec4D_Vector& momenta, bool anti=false);
0017 void SetModelParameters( GeneralModel _md );
0018 bool SetColorFlow(std::vector<ATOOLS::Particle*> outparts,int n_q,int n_g,
0019 bool m_anti);
0020 };
0021
0022 }
0023
0024
0025 #endif