Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:33

0001 #include "TrackingTools/MaterialEffects/interface/CombinedMaterialEffectsUpdator.h"
0002 
0003 //
0004 // Computation: combine updates on momentum and cov. matrix from the multiple
0005 // scattering and energy loss updators and store them in private variables
0006 //
0007 void CombinedMaterialEffectsUpdator::compute(const TrajectoryStateOnSurface& TSoS,
0008                                              const PropagationDirection propDir,
0009                                              Effect& effect) const {
0010   theMSUpdator.compute(TSoS, propDir, effect);
0011   theELUpdator.compute(TSoS, propDir, effect);
0012 }