Back to home page

EIC code displayed by LXR

 
 

    


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

0001 //--------------------------------------------------------------------------
0002 #ifndef HEPMC_ITERATOR_RANGE_H
0003 #define HEPMC_ITERATOR_RANGE_H
0004 
0005 //////////////////////////////////////////////////////////////////////////
0006 // Matt.Dobbs@Cern.CH, September 1999, refer to:
0007 // M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for
0008 // High Energy Physics", Computer Physics Communications (to be published).
0009 //
0010 // Iterator ranges used by GenVertex
0011 //////////////////////////////////////////////////////////////////////////
0012 
0013 
0014 namespace HepMC {
0015 
0016     /// type of iteration
0017     enum IteratorRange { parents, children, family, 
0018              ancestors, descendants, relatives };
0019 } // HepMC
0020 
0021 #endif  // HEPMC_ITERATOR_RANGE_H
0022 //--------------------------------------------------------------------------