File indexing completed on 2025-04-19 09:10:15
0001 #ifndef SHRIMPS_Cross_Sections_Sigma_Total_H
0002 #define SHRIMPS_Cross_Sections_Sigma_Total_H
0003 #include "SHRiMPS/Cross_Sections/Sigma_Base.H"
0004
0005 namespace SHRIMPS {
0006 class Sigma_Tot : public Sigma_Base {
0007 public:
0008 Sigma_Tot() {}
0009 double GetValue(const double & B);
0010 double GetCombinedValue(const double & B);
0011 double Test();
0012 };
0013
0014 class Elastic_Slope : public Sigma_Base {
0015 double m_stot;
0016 public:
0017 Elastic_Slope(const double & stot) : m_stot(stot) {}
0018 double GetValue(const double & B);
0019 double GetCombinedValue(const double & B);
0020 };
0021 }
0022 #endif