// RTrack.h #ifndef RTrack_H #define RTrack_H // RTrack correponds to a reconstructed track. For now this is simply // a typdef of MTrack. // typedef's for reconstructed tracks #include "ptr/Ptr.h" #include "ptr/LocalSharedDeletePolicy.h" #include #include "trffit/MTrack.h" // Define type, pointer, container and iterators. namespace trf { typedef MTrack RTrack; typedef Ptr RTrackPtr; typedef std::list RTrackList; } // end namespace trf #endif