- Mended tasdrive to drive energy even if Q is askew - Fixed QM values - Fixed problems in mesure: om2th, wrong theta selection - Fixed core dump when driving h,kl, failed
19 lines
443 B
C
19 lines
443 B
C
/**
|
|
* This is a library of trigonmetric functions acting upon proper
|
|
* angles and not radians. Lifted from the Risoe tascom code
|
|
*
|
|
* March 2005
|
|
*/
|
|
#ifndef SICSTRIGD
|
|
#define SICSTRIGD
|
|
double Sign(double d);
|
|
double Sind (double x);
|
|
double Tand(double x);
|
|
double Cosd (double x);
|
|
double Atand (double x);
|
|
double Atand2 (double x);
|
|
double Acosd (double x);
|
|
double Asind (double x);
|
|
double Atan2d(double x, double y);
|
|
#endif
|