CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_3/src/TrackingTools/TrackFitters/src/TrajectoryStateWithArbitraryError.cc

Go to the documentation of this file.
00001 #include "TrackingTools/TrackFitters/interface/TrajectoryStateWithArbitraryError.h"
00002 
00003 TrajectoryStateOnSurface 
00004 TrajectoryStateWithArbitraryError::operator()(const TSOS& aTsos) const {
00005   
00006   AlgebraicSymMatrix55 C = AlgebraicMatrixID();
00007   C *= 100.;
00008 
00009   return TSOS( aTsos.localParameters(), LocalTrajectoryError(C), 
00010                aTsos.surface(),
00011                &(aTsos.globalParameters().magneticField()));
00012 }