FairRoot/PandaRoot
Namespaces | Classes | Enumerations
RKTrackRep

Namespaces

 genfit
 Matrix inversion tools.
 
 genfit::RKTools
 Array matrix multiplications used in RKTrackRep.
 

Classes

class  GFMaterialEffects
 Contains stepper and energy loss/noise matrix calculation. More...
 
class  genfit::AbsMaterialInterface
 Abstract base class for geometry interfacing. More...
 
class  genfit::MaterialEffects
 Stepper and energy loss/noise matrix calculation. More...
 
struct  genfit::RKStep
 Helper for RKTrackRep. More...
 
struct  genfit::ExtrapStep
 Helper for RKTrackRep. More...
 
class  genfit::RKTrackRep
 AbsTrackRep with 5D track parameterization in plane coordinates: (q/p, u', v', u, v) More...
 
class  genfit::StepLimits
 Helper to store different limits on the stepsize for the RKTRackRep. More...
 
class  genfit::TGeoMaterialInterface
 AbsMaterialInterface implementation for use with ROOT's TGeoManager. More...
 

Enumerations

enum  genfit::StepLimitType {
  genfit::stp_noLimit = 0, genfit::stp_fieldCurv, genfit::stp_momLoss, genfit::stp_sMax,
  genfit::stp_sMaxArg, genfit::stp_boundary, genfit::stp_plane, genfit::ENUM_NR_ITEMS
}
 

Detailed Description

Enumeration Type Documentation

Enumerator
stp_noLimit 
stp_fieldCurv 
stp_momLoss 
stp_sMax 
stp_sMaxArg 
stp_boundary 
stp_plane 
ENUM_NR_ITEMS 

Definition at line 33 of file StepLimits.h.

33  {
34  // soft limits (only rough estimation, can go beyond safely)
35  stp_noLimit = 0, // only for internal use
36 
37  // medium limits (can go a bit further if e.g. plane or boundary will be reached)
38  stp_fieldCurv, // stepsize limited by curvature and magnetic field inhomogenities
39  stp_momLoss, // stepsize limited by stepper because maximum momLoss is reached
40  stp_sMax, // stepsize limited by SMax defined in #estimateStep()
41 
42  // hard limits (must stop there at any case!)
43  stp_sMaxArg, // stepsize limited by argument maxStepArg passed to #estimateStep()
44  stp_boundary, // stepsize limited by stepper because material boundary is encountered
45  stp_plane, // stepsize limited because destination plane is reached
46 
47  ENUM_NR_ITEMS // only for internal use
48 };