Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dont inadvertently overwrite attributes on insert_scattering_quantity #58

Merged
merged 2 commits into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions news/tweaks.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* <news item>

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* fixed inadvertent overwrite of attributes on self.insert_scattering_quantity()

**Security:**

* <news item>
13 changes: 10 additions & 3 deletions src/diffpy/utils/scattering_objects/diffraction_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def __init__(self, name='', wavelength=None):
self.on_tth = [np.empty(1), np.empty(1)]
self.on_d = [np.empty(1), np.empty(1)]
self._all_arrays = [self.on_q, self.on_tth]
self.metadata = {}

def __add__(self, other):
summed = deepcopy(self)
Expand Down Expand Up @@ -221,7 +222,8 @@ def get_angle_index(self, angle):
if count >= len(self.angles):
raise IndexError(f"WARNING: no angle {angle} found in angles list")

def insert_scattering_quantity(self, xarray, yarray, xtype, metadata={}):
def insert_scattering_quantity(self, xarray, yarray, xtype, metadata={},
scat_quantity=None, name=None, wavelength=None):
f"""
insert a new scattering quantity into the scattering object

Expand All @@ -241,7 +243,12 @@ def insert_scattering_quantity(self, xarray, yarray, xtype, metadata={}):

"""
self.input_xtype = xtype
self.metadata = metadata
# empty attributes have been defined in the __init__ method so only
# set the attributes that are not empty to avoid emptying them by mistake
if metadata: self.metadata = metadata
if scat_quantity is not None: self.scat_quantity = scat_quantity
if name is not None: self.name = name
if wavelength is not None: self.wavelength = wavelength
if xtype.lower() in QQUANTITIES:
self.on_q = [np.array(xarray),np.array(yarray)]
elif xtype.lower() in ANGLEQUANTITIES:
Expand Down Expand Up @@ -284,7 +291,7 @@ def q_to_tth(self):
q = np.asarray(q)
wavelength = float(self.wavelength)
pre_factor = wavelength / (4 * np.pi)
return np.rad2deg(2 * np.arcsin(q * pre_factor))
return np.rad2deg(2. * np.arcsin(q * pre_factor))

def tth_to_q(self):
r"""
Expand Down
Loading