Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef SHRIMPS_Eikonals_Analytic_Eikonal_H
0002 #define SHRIMPS_Eikonals_Analytic_Eikonal_H
0003 
0004 #include "SHRiMPS/Tools/Parameter_Structures.H"
0005 #include "ATOOLS/Math/Function_Base.H"
0006 
0007 namespace SHRIMPS {
0008   class Analytic_Eikonal : public ATOOLS::Function_Base {
0009   private:
0010     double m_norm, m_prefactor, m_expnorm;
0011   public:
0012     Analytic_Eikonal();
0013     double operator()(const double & B) const;
0014   };
0015 }
0016 
0017 #endif