StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CompareGenEvent.h
1 //--------------------------------------------------------------------------
2 #ifndef HEPMC_COMPARE_GENEVENT_H
3 #define HEPMC_COMPARE_GENEVENT_H
4 
6 // CompareGenEvent.h
7 //
8 // garren@fnal.gov, January 2008
9 // Free functions used to compare two copies of GenEvent
11 //
12 
13 #include <iostream>
14 
15 #include "HepMC/GenEvent.h"
16 
17 namespace HepMC {
18 
19 bool compareGenEvent( GenEvent*, GenEvent* );
20 bool compareSignalProcessVertex( GenEvent*, GenEvent* );
21 bool compareBeamParticles( GenEvent*, GenEvent* );
22 bool compareWeights( GenEvent*, GenEvent* );
23 bool compareVertices( GenEvent*, GenEvent* );
24 bool compareParticles( GenEvent*, GenEvent* );
25 bool compareVertex( GenVertex* v1, GenVertex* v2 );
26 
27 } // HepMC
28 
29 #endif // HEPMC_COMPARE_GENEVENT_H
30 //--------------------------------------------------------------------------