- Initial commit of a UB calculation setup for four circle

diffractometers
This commit is contained in:
koennecke
2005-03-23 08:19:47 +00:00
parent 2b63ad06b2
commit beba0d4644
18 changed files with 1236 additions and 55 deletions

17
trigd.h Normal file
View File

@ -0,0 +1,17 @@
/**
* 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);
#endif