CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EnergyLossUpdator.h
Go to the documentation of this file.
1 #ifndef _CR_ENERGYLOSSUPDATOR_H_
2 #define _CR_ENERGYLOSSUPDATOR_H_
3 
17 
18 class MediumProperties;
19 
21 {
22  public:
23  virtual EnergyLossUpdator* clone() const {
24  return new EnergyLossUpdator(*this);
25  }
26 
27 public:
28  EnergyLossUpdator( double mass ) :
29  MaterialEffectsUpdator(mass) {}
30 
31 private:
32  // here comes the actual computation of the values
33  virtual void compute (const TrajectoryStateOnSurface&,
35  // Internal routine for ionization acc. to Bethe-Bloch
37  // Internal routine for energy loss by electrons due to radiation
38  void computeElectrons (const LocalVector&, const MediumProperties&,
39  const PropagationDirection) const dso_internal;
40 
41 };
42 
43 #endif
void computeElectrons(const LocalVector &, const MediumProperties &, const PropagationDirection) const
virtual EnergyLossUpdator * clone() const
PropagationDirection
EnergyLossUpdator(double mass)
#define dso_internal
Definition: Visibility.h:13
string const
Definition: compareJSON.py:14
virtual void compute(const TrajectoryStateOnSurface &, const PropagationDirection) const
void computeBetheBloch(const LocalVector &, const MediumProperties &) const