![]() |
HepMC Reference DocumentationHepMC |
00001 //-------------------------------------------------------------------------- 00002 #ifndef HEPMC_COMPARE_GENEVENT_H 00003 #define HEPMC_COMPARE_GENEVENT_H 00004 00006 // CompareGenEvent.h 00007 // 00008 // garren@fnal.gov, January 2008 00009 // Free functions used to compare two copies of GenEvent 00011 // 00012 00013 #include <iostream> 00014 00015 #include "HepMC/GenEvent.h" 00016 00017 namespace HepMC { 00018 00019 bool compareGenEvent( GenEvent*, GenEvent* ); 00020 bool compareSignalProcessVertex( GenEvent*, GenEvent* ); 00021 bool compareBeamParticles( GenEvent*, GenEvent* ); 00022 bool compareWeights( GenEvent*, GenEvent* ); 00023 bool compareVertices( GenEvent*, GenEvent* ); 00024 bool compareParticles( GenEvent*, GenEvent* ); 00025 bool compareVertex( GenVertex* v1, GenVertex* v2 ); 00026 00027 } // HepMC 00028 00029 #endif // HEPMC_COMPARE_GENEVENT_H 00030 //--------------------------------------------------------------------------