00001 // ........................................................... 00002 // This typedef is used to define the collection 00003 // 00004 // TransportedParticleCollection 00005 // 00006 00007 #ifndef __ATLFAST_TransportedParticleCollection__ 00008 #define __ATLFAST_TransportedParticleCollection__ 00009 00010 #include <vector> 00011 00012 #include "AtlfastCode/TransportedParticle.h" 00013 namespace Atlfast { 00014 00015 typedef std::vector<const TransportedParticle*> TPCollection ; 00016 typedef TPCollection::const_iterator TPCollectionCIter ; 00017 typedef TPCollection::iterator TPCollectionIter ; 00018 } 00019 00020 #endif 00021 00022