mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-20 05:21:57 +01:00
postprocessing based on external functions - can work with f90 interface
git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@285 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
@@ -4,6 +4,10 @@
|
||||
class angleConversionConstant {
|
||||
|
||||
public:
|
||||
|
||||
angleConversionConstant(){};
|
||||
angleConversionConstant(double c, double r, double o, double t){center=c; r_conversion=r; offset=o; tilt=t;};
|
||||
|
||||
//typedef struct {
|
||||
double center; /**< center of the module (channel at which the radius is perpendicular to the module surface) */
|
||||
double ecenter; /**< error in the center determination */
|
||||
@@ -20,7 +24,7 @@ class angleConversionConstant {
|
||||
double getOffset(){return offset;};
|
||||
double getTilt(){return tilt;};
|
||||
|
||||
int setAngConvConstant(angleConversionConstant *acc) {\
|
||||
void setAngConvConstant(angleConversionConstant *acc) {\
|
||||
center=acc->center; \
|
||||
ecenter=acc->ecenter; \
|
||||
r_conversion=acc->r_conversion; \
|
||||
|
||||
Reference in New Issue
Block a user