1 /* This file is part of the hkl library.
3 * The hkl library is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
8 * The hkl library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with the hkl library. If not, see <http://www.gnu.org/licenses/>.
16 * Copyright (C) 2003-2011 Synchrotron SOLEIL
17 * L'Orme des Merisiers Saint-Aubin
18 * BP 48 91192 GIF-sur-YVETTE CEDEX
20 * Authors: Picca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>
23 #include <gsl/gsl_nan.h>
24 #include <gsl/gsl_sys.h> /* gsl_nan()! */
25 #include <hkl/hkl-unit.h>
28 * hkl_unit_dup: (skip)
33 * Returns: the copied #HklUnit (memory must be release with
36 HklUnit
* hkl_unit_dup(const HklUnit
*self
)
41 HklUnit
*dup
= HKL_MALLOC(HklUnit
);
48 * hkl_unit_free: (skip)
51 * release the memory of an #HklUnit
53 void hkl_unit_free(HklUnit
*self
)
60 * hkl_unit_compatible: check if two units are compatible.
61 * @self: the first @HklUnit
62 * @unit: the second @HklUnit to check
64 * Returns: HKL_TRUE or HKL_FALSE
66 int hkl_unit_compatible(const HklUnit
*self
, const HklUnit
*unit
)
71 case HKL_UNIT_ANGLE_DEG
:
73 case HKL_UNIT_ANGLE_DEG
:
74 case HKL_UNIT_ANGLE_RAD
:
81 case HKL_UNIT_ANGLE_RAD
:
83 case HKL_UNIT_ANGLE_DEG
:
84 case HKL_UNIT_ANGLE_RAD
:
91 case HKL_UNIT_LENGTH_NM
:
93 case HKL_UNIT_LENGTH_NM
:
109 * compute the factor to convert from one @Hklunit to another one.
110 * @self * factor = @unit
112 * Returns: the factor of the conversion.
114 double hkl_unit_factor(const HklUnit
*self
, const HklUnit
*unit
)
120 case HKL_UNIT_ANGLE_DEG
:
122 case HKL_UNIT_ANGLE_DEG
:
124 case HKL_UNIT_ANGLE_RAD
:
125 factor
= HKL_DEGTORAD
;
132 case HKL_UNIT_ANGLE_RAD
:
134 case HKL_UNIT_ANGLE_DEG
:
135 factor
= HKL_RADTODEG
;
137 case HKL_UNIT_ANGLE_RAD
:
144 case HKL_UNIT_LENGTH_NM
:
146 case HKL_UNIT_LENGTH_NM
: