CMS 3D CMS Logo

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 public:
22  EnergyLossUpdator* clone() const override { return new EnergyLossUpdator(*this); }
23 
24 public:
26 
27  // here comes the actual computation of the values
28  void compute(const TrajectoryStateOnSurface&, const PropagationDirection, Effect& effect) const override;
29 
30 private:
31  // Internal routine for ionization acc. to Bethe-Bloch
32  void computeBetheBloch(const LocalVector&, const MediumProperties&, Effect& effect) const dso_internal;
33  // Internal routine for energy loss by electrons due to radiation
34  void computeElectrons(const LocalVector&,
35  const MediumProperties&,
37  Effect& effect) const dso_internal;
38 };
39 
40 #endif
materialEffect::Effect Effect
EnergyLossUpdator * clone() const override
void computeElectrons(const LocalVector &, const MediumProperties &, const PropagationDirection, Effect &effect) const
void compute(const TrajectoryStateOnSurface &, const PropagationDirection, Effect &effect) const override
PropagationDirection
#define dso_internal
Definition: Visibility.h:13
EnergyLossUpdator(float mass)
void computeBetheBloch(const LocalVector &, const MediumProperties &, Effect &effect) const