CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoPixelVertexing/PixelTrackFitting/interface/TracksWithHits.h

Go to the documentation of this file.
00001 #ifndef PixelTrackFitting_TracksWithHits_H
00002 #define PixelTrackFitting_TracksWithHits_H
00003 
00004 #include "DataFormats/TrackReco/interface/TrackFwd.h"
00005 #include "DataFormats/TrackingRecHit/interface/TrackingRecHit.h"
00006 #include "RecoTracker/TkSeedingLayers/interface/SeedingHitSet.h"
00007 
00008 #include <vector>
00009 
00010 namespace pixeltrackfitting {
00011   typedef std::pair<reco::Track*, std::vector<const TrackingRecHit *> > TrackWithRecHits;
00012   typedef std::pair<reco::Track*, SeedingHitSet> TrackWithTTRHs;
00013   typedef std::vector<TrackWithRecHits> TracksWithRecHits; 
00014   typedef std::vector<TrackWithTTRHs> TracksWithTTRHs; 
00015 }
00016 
00017 #endif