@@ -19,6 +19,7 @@ def __init__(self, name='', wavelength=None):
19
19
self .on_tth = [np .empty (1 ), np .empty (1 )]
20
20
self .on_d = [np .empty (1 ), np .empty (1 )]
21
21
self ._all_arrays = [self .on_q , self .on_tth ]
22
+ self .metadata = {}
22
23
23
24
def __add__ (self , other ):
24
25
summed = deepcopy (self )
@@ -221,7 +222,8 @@ def get_angle_index(self, angle):
221
222
if count >= len (self .angles ):
222
223
raise IndexError (f"WARNING: no angle { angle } found in angles list" )
223
224
224
- def insert_scattering_quantity (self , xarray , yarray , xtype , metadata = {}):
225
+ def insert_scattering_quantity (self , xarray , yarray , xtype , metadata = {},
226
+ scat_quantity = None , name = None , wavelength = None ):
225
227
f"""
226
228
insert a new scattering quantity into the scattering object
227
229
@@ -241,7 +243,12 @@ def insert_scattering_quantity(self, xarray, yarray, xtype, metadata={}):
241
243
242
244
"""
243
245
self .input_xtype = xtype
244
- self .metadata = metadata
246
+ # empty attributes have been defined in the __init__ method so only
247
+ # set the attributes that are not empty to avoid emptying them by mistake
248
+ if metadata : self .metadata = metadata
249
+ if scat_quantity is not None : self .scat_quantity = scat_quantity
250
+ if name is not None : self .name = name
251
+ if wavelength is not None : self .wavelength = wavelength
245
252
if xtype .lower () in QQUANTITIES :
246
253
self .on_q = [np .array (xarray ),np .array (yarray )]
247
254
elif xtype .lower () in ANGLEQUANTITIES :
@@ -284,7 +291,7 @@ def q_to_tth(self):
284
291
q = np .asarray (q )
285
292
wavelength = float (self .wavelength )
286
293
pre_factor = wavelength / (4 * np .pi )
287
- return np .rad2deg (2 * np .arcsin (q * pre_factor ))
294
+ return np .rad2deg (2. * np .arcsin (q * pre_factor ))
288
295
289
296
def tth_to_q (self ):
290
297
r"""
0 commit comments