~ubuntu-branches/ubuntu/trusty/pythia8/trusty-proposed

« back to all changes in this revision

Viewing changes to include/PythiaComplex.h

  • Committer: Package Import Robot
  • Author(s): Lifeng Sun
  • Date: 2012-05-22 11:43:00 UTC
  • Revision ID: package-import@ubuntu.com-20120522114300-0jvsv2vl4o2bo435
Tags: upstream-8.1.65
ImportĀ upstreamĀ versionĀ 8.1.65

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// PythiaComplex.h is a part of the PYTHIA event generator.
 
2
// Copyright (C) 2012 Torbjorn Sjostrand.
 
3
// PYTHIA is licenced under the GNU GPL version 2, see COPYING for details.
 
4
// Please respect the MCnet Guidelines, see GUIDELINES for details.
 
5
 
 
6
// Header file for typedef'd double precision complex numbers.
 
7
 
 
8
#ifndef Pythia8_PythiaComplex_H
 
9
#define Pythia8_PythiaComplex_H
 
10
 
 
11
// Stdlib header for complex numbers.
 
12
# include <complex>
 
13
 
 
14
namespace Pythia8 {
 
15
 
 
16
// Convenient typedef for double precision complex numbers.
 
17
typedef std::complex<double> complex;
 
18
 
 
19
} // end namespace Pythia8
 
20
 
 
21
#endif // Pythia8_PythiaComplex_H