Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef HADRONS_Current_Library_VA_B_DPi_H
0002 #define HADRONS_Current_Library_VA_B_DPi_H
0003 
0004 #include "HADRONS++/Current_Library/Current_Base.H"
0005 
0006 namespace HADRONS {
0007 
0008   class VA_B_DPi : public Current_Base {
0009 
0010     double m_Vxx;
0011   public:
0012     VA_B_DPi(const ATOOLS::Flavour_Vector& flavs,
0013              const std::vector<int>& indices, const std::string& name) :
0014       Current_Base(flavs, indices, name) {};
0015     void SetModelParameters( struct GeneralModel _md );
0016     void Calc(const ATOOLS::Vec4D_Vector& moms, bool m_anti);
0017   };
0018 }
0019 
0020 #endif