Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-06 09:38:19

0001 // -*- C++ -*-
0002 //
0003 // Complex.h is a part of ThePEG - Toolkit for HEP Event Generation
0004 // Copyright (C) 1999-2019 Leif Lonnblad
0005 //
0006 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 #ifndef ThePEG_Complex_H
0010 #define ThePEG_Complex_H
0011 //
0012 // This is file wraps the standard complex header and makes some
0013 // convenient typedefs in the ThePEG namespace.
0014 //
0015 
0016 #include <complex>
0017 
0018 namespace ThePEG {
0019 
0020 using std::complex;
0021 
0022 /// ThePEG code should use Complex for all complex scalars
0023 using Complex = std::complex<double>;
0024 
0025 }
0026 
0027 #endif /* ThePEG_Complex_H */
0028