00001 // ........................................................... 00002 // This typedef is used to define the collection used to store: 00003 // 00004 // MCparticleCollection 00005 // 00006 // in the TES 00007 00008 #ifndef ATLFAST_MCPARTICLECOLLECTION_H 00009 #define ATLFAST_MCPARTICLECOLLECTION_H 00010 00011 #include "HepMC/GenParticle.h" 00012 00013 #include <vector> 00014 //#include <string> 00015 00016 namespace Atlfast { 00017 00018 typedef std::vector<const HepMC::GenParticle*> MCparticleCollection ; 00019 typedef std::vector<const HepMC::GenParticle*>::const_iterator 00020 MCparticleCollectionCIter ; 00021 00022 } 00023 00024 #endif 00025 00026