CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/TrackingTools/TrajectoryState/src/BasicTrajectoryState.cc

Go to the documentation of this file.
00001 #include "TrackingTools/TrajectoryState/interface/BasicTrajectoryState.h"
00002 #include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h"
00003 
00004 BasicTrajectoryState::~BasicTrajectoryState(){}
00005 
00006 
00007 std::vector<TrajectoryStateOnSurface> 
00008 BasicTrajectoryState::components() const {
00009   std::vector<TrajectoryStateOnSurface> result; result.reserve(1);
00010   result.push_back( const_cast<BasicTrajectoryState*>(this));
00011   return result;
00012 }