Skip to content

Commit edaa35d

Browse files
remove unused modules, ambiguous variable name (#28)
1 parent ffe5fc7 commit edaa35d

File tree

4 files changed

+21
-28
lines changed

4 files changed

+21
-28
lines changed

diffpy/srmise/baselines/polynomial.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@
1313

1414
import logging
1515

16-
import matplotlib.pyplot as plt
1716
import numpy as np
1817

19-
import diffpy.srmise.srmiselog
2018
from diffpy.srmise.baselines.base import BaselineFunction
2119
from diffpy.srmise.srmiseerrors import SrMiseEstimationError
2220

@@ -54,7 +52,7 @@ def __init__(self, degree, Cache=None):
5452
metadict["degree"] = (degree, repr)
5553
BaselineFunction.__init__(self, parameterdict, formats, default_formats, metadict, None, Cache)
5654

57-
#### Methods required by BaselineFunction ####
55+
# Methods required by BaselineFunction ####
5856

5957
def estimate_parameters(self, r, y):
6058
"""Estimate parameters for polynomial baseline.
@@ -124,7 +122,7 @@ def _jacobianraw(self, pars, r, free):
124122
emsg = "Argument free must have " + str(self.npars) + " elements."
125123
raise ValueError(emsg)
126124
jacobian = [None for p in range(self.npars)]
127-
if (free == False).sum() == self.npars:
125+
if (free is False).sum() == self.npars:
128126
return jacobian
129127

130128
# The partial derivative with respect to the nth coefficient of a

diffpy/srmise/dataclusters.py

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
import matplotlib.pyplot as plt
1818
import numpy as np
1919

20-
import diffpy.srmise.srmiselog
21-
2220
logger = logging.getLogger("diffpy.srmise")
2321

2422

diffpy/srmise/modelcluster.py

+17-20
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@
2222
import re
2323
import sys
2424

25-
import matplotlib.pyplot as plt
2625
import numpy as np
27-
import scipy as sp
28-
from scipy.optimize import leastsq
2926

27+
from diffpy.srmise import srmiselog
3028
from diffpy.srmise.baselines import Baseline
3129
from diffpy.srmise.modelparts import ModelParts
3230
from diffpy.srmise.peaks import Peak, Peaks
@@ -39,8 +37,6 @@
3937

4038
logger = logging.getLogger("diffpy.srmise")
4139

42-
from diffpy.srmise import srmiselog
43-
4440

4541
class ModelCovariance(object):
4642
"""Helper class preserves uncertainty info (full covariance matrix) for a fit model.
@@ -201,8 +197,8 @@ def transform(self, in_format, out_format, **kwds):
201197
subg = np.identity(p.npars(True))
202198
except Exception as e:
203199
logger.warning(
204-
"Transformation gradient failed for part %i: %s. Failed with message %s. Ignoring transformation."
205-
% (i, str(p), str(e))
200+
"Transformation gradient failed for part %i: %s. "
201+
"Failed with message %s. Ignoring transformation." % (i, str(p), str(e))
206202
)
207203
subg = np.identity(p.npars(True))
208204

@@ -211,8 +207,8 @@ def transform(self, in_format, out_format, **kwds):
211207
p.pars = p.owner().transform_parameters(p.pars, in_format, out_format)
212208
except Exception as e:
213209
logger.warning(
214-
"Parameter transformation failed for part %i: %s. Failed with message %s. Ignoring transformation."
215-
% (i, str(p), str(e))
210+
"Parameter transformation failed for part %i: %s. "
211+
"Failed with message %s. Ignoring transformation." % (i, str(p), str(e))
216212
)
217213
subg = np.identity(p.npars(True))
218214

@@ -600,21 +596,21 @@ def factory(mcstr, **kwds):
600596
baselinefunctions = header[res.end() :].strip()
601597
header = header[: res.start()]
602598

603-
### Instantiating baseline functions
599+
# Instantiating baseline functions
604600
if readblf:
605601
blfbaselist = []
606602
res = re.split(r"(?m)^#+ BaselineFunction \d+\s*(?:#.*\s+)*", baselinefunctions)
607603
for s in res[1:]:
608604
blfbaselist.append(BaseFunction.factory(s, blfbaselist))
609605

610-
### Instantiating peak functions
606+
# Instantiating peak functions
611607
if readpf:
612608
pfbaselist = []
613609
res = re.split(r"(?m)^#+ PeakFunction \d+\s*(?:#.*\s+)*", peakfunctions)
614610
for s in res[1:]:
615611
pfbaselist.append(BaseFunction.factory(s, pfbaselist))
616612

617-
### Instantiating header data
613+
# Instantiating header data
618614
# peak_funcs
619615
res = re.search(r"^peak_funcs=(.*)$", header, re.M)
620616
peak_funcs = eval(res.groups()[0].strip())
@@ -631,19 +627,19 @@ def factory(mcstr, **kwds):
631627
res = re.search(r"^slice=(.*)$", header, re.M)
632628
cluster_slice = eval(res.groups()[0].strip())
633629

634-
### Instantiating BaselineObject
630+
# Instantiating BaselineObject
635631
if re.match(r"^None$", baselineobject):
636632
baseline = None
637633
else:
638634
baseline = Baseline.factory(baselineobject, blfbaselist)
639635

640-
### Instantiating model
636+
# Instantiating model
641637
model = Peaks()
642638
res = re.split(r"(?m)^#+ ModelPeak\s*(?:#.*\s+)*", model_peaks)
643639
for s in res[1:]:
644640
model.append(Peak.factory(s, pfbaselist))
645641

646-
### Instantiating start data
642+
# Instantiating start data
647643
# read actual data - r, y, dy
648644
arrays = []
649645
if hasr:
@@ -664,9 +660,10 @@ def factory(mcstr, **kwds):
664660
# raise SrMiseDataFormatError if something goes wrong
665661
try:
666662
for line in start_data.split("\n"):
667-
l = line.split()
668-
if len(arrays) != len(l):
663+
lines = line.split()
664+
if len(arrays) != len(lines):
669665
emsg = "Number of value fields does not match that given by '%s'" % start_data_info
666+
raise IndexError(emsg)
670667
for a, v in zip(arrays, line.split()):
671668
a.append(float(v))
672669
except (ValueError, IndexError) as err:
@@ -847,7 +844,7 @@ def deletepeak(self, idx):
847844

848845
def estimatepeak(self):
849846
"""Attempt to add single peak to empty cluster. Return True if successful."""
850-
### STUB!!! ###
847+
# STUB!!! ###
851848
# Currently only a single peak function is supported. Dynamic
852849
# selection from multiple types may require additional support
853850
# within peak functions themselves. The simplest method would
@@ -901,7 +898,7 @@ def fit(
901898
if estimate:
902899
try:
903900
self.estimatepeak()
904-
except SrMiseEstimationError as e:
901+
except SrMiseEstimationError:
905902
logger.info("Fit: No model to fit, estimation not possible.")
906903
return
907904
else:
@@ -1278,7 +1275,7 @@ def prune(self):
12781275
msg = ["====Pruning fits:====", "Original model:", "%s", "w/ quality: %s"]
12791276
logger.info("\n".join(msg), best_model, best_qual.stat)
12801277

1281-
#### Main prune loop ####
1278+
# Main prune loop ####
12821279
while check_models.count(None) < len(check_models):
12831280

12841281
# Cache value of individual peaks for best current model.

diffpy/srmise/srmiselog.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -287,14 +287,14 @@ def readstr(self, datastring):
287287

288288
res = re.search(r"^recursion=(.*)$", header, re.M)
289289
if res:
290-
recursion = eval(res.groups()[0].strip())
290+
eval(res.groups()[0].strip())
291291
else:
292292
emsg = "Required field 'recursion' not found."
293293
raise SrMiseDataFormatError(emsg)
294294

295295
res = re.search(r"^counter=(.*)$", header, re.M)
296296
if res:
297-
counter = eval(res.groups()[0].strip())
297+
eval(res.groups()[0].strip())
298298
else:
299299
emsg = "Required field 'counter' not found."
300300
raise SrMiseDataFormatError(emsg)

0 commit comments

Comments
 (0)