![]() |
![]() |
00001 #ifndef _Surface_MEDIUMPROPERTIES_H_ 00002 #define _Surface_MEDIUMPROPERTIES_H_ 00003 00004 00013 class MediumProperties { 00014 00015 public: 00016 00017 MediumProperties(float aRadLen, float aXi) : 00018 theRadLen(aRadLen), theXi(aXi) {} 00019 ~MediumProperties() {} 00020 00023 float radLen() const { 00024 return theRadLen; 00025 } 00029 float xi() const { 00030 return theXi; 00031 } 00032 00033 private: 00034 float theRadLen; 00035 float theXi; 00036 00037 }; 00038 #endif