source: HiSusy/trunk/hepmc/x86_64-slc5-gcc41-opt/include/HepMC/CompareGenEvent.h @ 1

Last change on this file since 1 was 1, checked in by zerwas, 11 years ago

first import of structure, PYTHIA8 and DELPHES

File size: 950 bytes
Line 
1//--------------------------------------------------------------------------
2#ifndef HEPMC_COMPARE_GENEVENT_H
3#define HEPMC_COMPARE_GENEVENT_H
4
5/////////////////////////////////////////////////////////////////////////
6// CompareGenEvent.h
7//
8// garren@fnal.gov, January 2008
9// Free functions used to compare two copies of GenEvent
10//////////////////////////////////////////////////////////////////////////
11//
12
13#include <iostream>
14
15#include "HepMC/GenEvent.h"
16
17namespace HepMC {
18
19bool compareGenEvent( GenEvent*, GenEvent* );
20bool compareSignalProcessVertex( GenEvent*, GenEvent* );
21bool compareBeamParticles( GenEvent*, GenEvent* );
22bool compareWeights( GenEvent*, GenEvent* );
23bool compareVertices( GenEvent*, GenEvent* );
24bool compareParticles( GenEvent*, GenEvent* );
25bool compareVertex( GenVertex* v1, GenVertex* v2 );
26
27} // HepMC
28
29#endif  // HEPMC_COMPARE_GENEVENT_H
30//--------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.