00001
00002 #ifndef RIVET_RivetHepMC_HH
00003 #define RIVET_RivetHepMC_HH
00004
00005 #include "HepMC/GenEvent.h"
00006 #include "HepMC/GenParticle.h"
00007 #include "HepMC/GenVertex.h"
00008
00009 #include <vector>
00010
00011 namespace Rivet {
00012
00013
00014 using HepMC::GenEvent;
00015 using HepMC::GenParticle;
00016 using HepMC::GenVertex;
00017
00018
00019 inline vector<GenParticle*> particles(const GenEvent& ge) {
00020 vector<GenParticle*> rtn;
00021 for (GenEvent::particle_const_iterator pi = ge.particles_begin(); pi != ge.particles_end(); ++pi) {
00022 rtn.push_back(*pi);
00023 }
00024 return rtn;
00025 }
00026 inline vector<GenParticle*> particles(const GenEvent* ge) {
00027 assert(ge);
00028 return particles(*ge);
00029 }
00030
00031
00032 inline vector<GenVertex*> vertices(const GenEvent& ge) {
00033 vector<GenVertex*> rtn;
00034 for (GenEvent::vertex_const_iterator vi = ge.vertices_begin(); vi != ge.vertices_end(); ++vi) {
00035 rtn.push_back(*vi);
00036 }
00037 return rtn;
00038 }
00039 inline vector<GenVertex*> vertices(const GenEvent* ge) {
00040 assert(ge);
00041 return vertices(*ge);
00042 }
00043
00044
00045 inline const vector<GenParticle*> particles_in(const GenVertex* gv) {
00046 vector<GenParticle*> rtn;
00047 for (GenVertex::particles_in_const_iterator pi = gv->particles_in_const_begin(); pi != gv->particles_in_const_end(); ++pi) {
00048 rtn.push_back(*pi);
00049 }
00050 return rtn;
00051 }
00052
00053
00054 inline const vector<GenParticle*> particles_out(const GenVertex* gv) {
00055 vector<GenParticle*> rtn;
00056 for (GenVertex::particles_out_const_iterator pi = gv->particles_out_const_begin(); pi != gv->particles_out_const_end(); ++pi) {
00057 rtn.push_back(*pi);
00058 }
00059 return rtn;
00060 }
00061
00062
00063 inline vector<GenParticle*> particles(GenVertex* gv, HepMC::IteratorRange range=HepMC::relatives) {
00064 vector<GenParticle*> rtn;
00065 for (GenVertex::particle_iterator pi = gv->particles_begin(range); pi != gv->particles_end(range); ++pi) {
00066 rtn.push_back(*pi);
00067 }
00068 return rtn;
00069 }
00070
00071
00072 }
00073
00074 #endif