Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // RngDebug.h is a part of the PYTHIA event generator.
0002 // Copyright (C) 2024 Torbjorn Sjostrand.
0003 // PYTHIA is licenced under the GNU GPL v2 or later, see COPYING for details.
0004 // Please respect the MCnet Guidelines, see GUIDELINES for details.
0005 
0006 // This file unsets specialized debug versions of random number methods
0007 // from the Rndm class. This header should be included whenever using
0008 // the random number generation debugging, and should follow after the
0009 // inclusion of all PYTHIA headers but before any user headers.
0010 
0011 #ifdef RNGDEBUG
0012 #undef flat
0013 #undef xexp
0014 #undef gauss
0015 #undef gamma
0016 #undef phaseSpace2
0017 #endif