Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #include "TrackingTools/TrackFitters/interface/TrajectoryStateWithArbitraryError.h"
0002 
0003 TrajectoryStateOnSurface TrajectoryStateWithArbitraryError::operator()(const TSOS& aTsos) const {
0004   AlgebraicSymMatrix55 C = AlgebraicMatrixID();
0005   C *= 100.;
0006 
0007   return TSOS(
0008       aTsos.localParameters(), LocalTrajectoryError(C), aTsos.surface(), &(aTsos.globalParameters().magneticField()));
0009 }