00001 #ifndef VOLUMEMEDIUMPROPERTIES_H_ 00002 #define VOLUMEMEDIUMPROPERTIES_H_ 00003 00011 class VolumeMediumProperties 00012 { 00013 public: 00014 VolumeMediumProperties (float x0, float xi) : 00015 x0_(x0), xi_(xi) {} 00016 00017 // Radiation length (in cm) 00018 float x0 () const {return x0_;} 00019 // Scaling factor for energy loss (see class description) 00020 float xi () const {return xi_;} 00021 00022 private: 00023 float x0_; 00024 float xi_; 00025 }; 00026 00027 #endif