// MCTrack.h // An MCTrack is a a Monte Carlo track, i.e. the input for event // simulation. For now, we simply typedef VTrack. #ifndef MCTrack_H #define MCTrack_H #include #include "ptr/Ptr.h" #include "ptr/LocalSharedDeletePolicy.h" #include "trfbase/VTrack.h" // Define type, pointer, container and iterators for Monte Carlo tracks. namespace trf { typedef VTrack MCTrack; typedef Ptr MCTrackPtr; typedef std::list MCTrackList; } // end namespace trf #endif