Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef SHRIMPS_Eikonals_Analytic_Contributor_H
0002 #define SHRIMPS_Eikonals_Analytic_Contributor_H
0003 
0004 #include "SHRiMPS/Eikonals/Form_Factors.H"
0005 
0006 namespace SHRIMPS {
0007   class Analytic_Contributor : public ATOOLS::Function_Base {
0008   private:
0009     Form_Factor * p_ff;
0010     double        m_Delta, m_Y;
0011     int           m_sign;
0012   public:
0013     Analytic_Contributor(Form_Factor * ff,const double & Delta,
0014              const double & Y,const int & sign) :
0015       p_ff(ff), m_Delta(Delta), m_Y(Y), m_sign(sign) {}
0016     double operator()(const double & b,const double & y) const;
0017   };
0018 } 
0019 
0020 #endif