File indexing completed on 2025-04-19 09:10:04
0001 #ifndef HADRONS_ME_Library_Phi_Decay_MEs_H
0002 #define HADRONS_ME_Library_Phi_Decay_MEs_H
0003
0004 #include "HADRONS++/ME_Library/HD_ME_Base.H"
0005
0006 namespace HADRONS {
0007 class Phi_PPGamma : public HD_ME_Base {
0008 public:
0009 Phi_PPGamma(ATOOLS::Flavour * flavs,int n,int* indices,std::string name) :
0010 HD_ME_Base(flavs,n,indices,name) {};
0011 void Calculate(const ATOOLS::Vec4D_Vector& momenta, bool anti=false);
0012 void SetModelParameters(GeneralModel);
0013 };
0014
0015 class Phi_VP : public HD_ME_Base {
0016 public:
0017 Phi_VP(ATOOLS::Flavour * flavs,int n,int* indices,std::string name) :
0018 HD_ME_Base(flavs,n,indices,name) {};
0019 void Calculate(const ATOOLS::Vec4D_Vector& momenta, bool anti=false);
0020 void SetModelParameters(GeneralModel);
0021 };
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042 };
0043
0044 #endif