Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:09

0001 //--------------------------------------------------------------------------
0002 #ifndef HEPMC_COMPARE_GENEVENT_H
0003 #define HEPMC_COMPARE_GENEVENT_H
0004 
0005 /////////////////////////////////////////////////////////////////////////
0006 // CompareGenEvent.h
0007 //
0008 // garren@fnal.gov, January 2008
0009 // Free functions used to compare two copies of GenEvent
0010 //////////////////////////////////////////////////////////////////////////
0011 //
0012 
0013 #include <iostream>
0014 
0015 #include "HepMC/GenEvent.h"
0016 
0017 namespace HepMC {
0018 
0019 bool compareGenEvent( GenEvent*, GenEvent* );
0020 bool compareSignalProcessVertex( GenEvent*, GenEvent* );
0021 bool compareBeamParticles( GenEvent*, GenEvent* );
0022 bool compareWeights( GenEvent*, GenEvent* );
0023 bool compareHeavyIons( GenEvent*, GenEvent* );
0024 bool comparePdfInfo( GenEvent*, GenEvent* );
0025 bool compareParticles( GenEvent*, GenEvent* );
0026 bool compareVertices( GenEvent*, GenEvent* );
0027 bool compareVertex( GenVertex* v1, GenVertex* v2 );
0028 
0029 } // HepMC
0030 
0031 #endif  // HEPMC_COMPARE_GENEVENT_H
0032 //--------------------------------------------------------------------------