Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // PythiaComplex.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 // Header file for typedef'd double precision complex numbers.
0007 
0008 #ifndef Pythia8_PythiaComplex_H
0009 #define Pythia8_PythiaComplex_H
0010 
0011 // Stdlib header for complex numbers.
0012 # include <complex>
0013 
0014 namespace Pythia8 {
0015 
0016 // Convenient typedef for double precision complex numbers.
0017 typedef std::complex<double> complex;
0018 using std::norm;
0019 
0020 //==========================================================================
0021 
0022 } // end namespace Pythia8
0023 
0024 #endif // Pythia8_PythiaComplex_H