CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/DataFormats/TrajectoryState/src/PTrajectoryStateOnDet.cc

Go to the documentation of this file.
00001 #include "DataFormats/TrajectoryState/interface/PTrajectoryStateOnDet.h"
00002 
00003 PTrajectoryStateOnDet::PTrajectoryStateOnDet( const LocalTrajectoryParameters& param,
00004                                               float errmatrix[15], unsigned int id,
00005                                               int surfaceSide) :
00006   theLocalParameters( param), 
00007   theLocalErrors(15),
00008   theDetId( id),
00009   theSurfaceSide( surfaceSide)
00010 {
00011   for (int i=0; i<15; i++) theLocalErrors[i] = errmatrix[i]; // let's try this way
00012 }
00013 
00014