00001 #include <cmath> 00002 00003 class CSigmaInvNeut 00004 { 00005 private: 00006 double mu; 00007 double R; 00008 double a; 00009 00010 public: 00011 CSigmaInvNeut(float mu, float R, float a); 00012 float getSigmaInv(float energy); 00013 00014 00015 };