00001 00002 00003 00004 00005 00006 00007 00008 #ifndef PARTICLELIST_H 00009 #define PARTICLELIST_H 00010 00011 #include <vector> 00012 #include "Simulation/Particle.h" 00013 #include "TObject.h" 00014 00015 namespace sim { 00016 00017 class ParticleList : public TObject { 00018 public: 00019 ParticleList(); 00020 ~ParticleList(); 00021 00022 public: 00023 std::vector<Particle> fParticles; 00024 00025 ClassDef(ParticleList,1); 00026 }; 00027 } 00028 00029 #endif 00030
1.3.9.1