GremlinEq
CEKG.h
1 //---------------------------------------------------------------------------
2 //
3 // $Id: CEKG.h,v 1.3 2018/08/01 22:50:14 sahughes Exp $
4 //
5 //---------------------------------------------------------------------------
6 //
7 // Circular, equatorial Kerr geodesics.
8 // Scott Hughes, 11 January 1999.
9 //
10 #ifndef _CEKG_H
11 #define _CEKG_H
12 
13 #define PROGRADE 1
14 #define RETROGRADE 0
15 
16 #include <cmath>
17 #include "Globals.h"
18 
20 
21 class CEKG {
22 public:
24 
27  CEKG(const int orbitsense, const Real rad, const Real spin);
28 
29  Real r;
30  Real a;
31  Real E;
32  Real Lz;
33  Real Om_phi;
34 };
35 #endif
Real r
Definition: CEKG.h:29
Real a
Definition: CEKG.h:30
CEKG(const int orbitsense, const Real rad, const Real spin)
A constructor for the CEKG Class.
Definition: CEKG.cc:14
Real Om_phi
Definition: CEKG.h:33
Circular Equatorial Kerr Geodesic Class.
Definition: CEKG.h:21
Real E
Definition: CEKG.h:31
Real Lz
Definition: CEKG.h:32