diff --git a/tracy/tracy/inc/tracy_global.h b/tracy/tracy/inc/tracy_global.h index 82f5f735d5e4f3220561d684bf66ac87d3a94660..781bbdfcb29136ed5f64060a28d8fccb07afce2d 100644 --- a/tracy/tracy/inc/tracy_global.h +++ b/tracy/tracy/inc/tracy_global.h @@ -56,7 +56,7 @@ typedef struct globvalrec { double Qb, // bunch charge D_IBS[DOF]; // diffusion matrix (Floquet space) Vector wr, wi; // real and imaginary part of eigenvalues - Vector3 eps, // 3 motion invariants + Vector3 eps, // 3 motion invariants, emittance? epsp; /* transverse and longitudinal projected emittances */ int RingType; // 1 if a ring (0 if transfer line) diff --git a/tracy/tracy/src/mathlib.cc b/tracy/tracy/src/mathlib.cc index d84458e98206e691db1afc1938bdfd824f3ccc44..77fd662f5bfc666327de2bdcda8b537b2dfd5885 100644 --- a/tracy/tracy/src/mathlib.cc +++ b/tracy/tracy/src/mathlib.cc @@ -194,7 +194,7 @@ double normranf(void) } #undef maxiter - +/* convert degree to radian */ double dtor(const double d) { return (d*M_PI/180.0); }