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