00001
00002
00003
00004
00005
00006
00007 #ifndef ATLFAST_TRANSPORTEDPARTICLECOLLECTION_H
00008 #define ATLFAST_TRANSPORTEDPARTICLECOLLECTION_H
00009
00010 #ifndef STD_VECTOR_H
00011 #define STD_VECTOR_H
00012 #include <vector>
00013 #endif
00014
00015 #include "AtlfastCode/TransportedParticle.h"
00016 namespace Atlfast {
00017
00018 typedef
00019 std::vector<const TransportedParticle*>
00020 TransportedParticleCollection ;
00021 typedef
00022 TransportedParticleCollection::const_iterator
00023 TransportedParticleCollectionCIter ;
00024 typedef
00025 TransportedParticleCollection::iterator
00026 TransportedParticleCollectionIter ;
00027 }
00028
00029 #endif
00030
00031
00032
00033
00034