CMS 3D CMS Logo

VolumeMediumProperties.h
Go to the documentation of this file.
1 #ifndef VOLUMEMEDIUMPROPERTIES_H_
2 #define VOLUMEMEDIUMPROPERTIES_H_
3 
12 {
13 public:
14  VolumeMediumProperties (float x0, float xi) :
15  x0_(x0), xi_(xi) {}
16 
17  // Radiation length (in cm)
18  float x0 () const {return x0_;}
19  // Scaling factor for energy loss (see class description)
20  float xi () const {return xi_;}
21 
22  private:
23  float x0_;
24  float xi_;
25 };
26 
27 #endif
VolumeMediumProperties(float x0, float xi)