Skip to content

Commit 181a54a

Browse files
fix import module not used & string check (#25)
1 parent 21d1a53 commit 181a54a

File tree

7 files changed

+52
-57
lines changed

7 files changed

+52
-57
lines changed

devutils/prep.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
__basedir__ = os.getcwdu()
1010

11+
from numpy.compat import unicode
12+
1113
# Example imports
1214

1315

@@ -86,7 +88,7 @@ def rm(directory, filerestr):
8688
rm("../doc/examples/output", r"known_dG.*\.pwa")
8789
rm("../doc/examples/output", r"unknown_dG.*\.pwa")
8890

89-
### Testing examples
91+
# Testing examples
9092
examples = Test()
9193
test_names = [
9294
"extract_single_peak",
@@ -108,7 +110,7 @@ def rm(directory, filerestr):
108110

109111
examples.report()
110112

111-
### Convert output of example files to Unix-style endlines for sdist.
113+
# Convert output of example files to Unix-style endlines for sdist.
112114
if os.linesep != "\n":
113115
print("==== Scrubbing Endlines ====")
114116
# All *.srmise and *.pwa files in examples directory.

diffpy/srmise/applications/extract.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
#
1212
##############################################################################
1313

14-
from optparse import OptionGroup, OptionParser
14+
import textwrap
15+
from optparse import IndentedHelpFormatter, OptionGroup, OptionParser
1516

1617
import matplotlib.pyplot as plt
1718
import numpy as np
@@ -539,7 +540,6 @@ def main():
539540
cov = None
540541
if options.performextraction:
541542
cov = ext.extract()
542-
out = ext.extracted
543543

544544
if options.savefile is not None:
545545
try:
@@ -591,13 +591,10 @@ def parsepars(mp, parseq):
591591
return mp.actualize(pars, "internal", free=free)
592592

593593

594-
### Class to preserve newlines in optparse
594+
# Class to preserve newlines in optparse
595595
# Borrowed, with minor changes, from
596596
# http://groups.google.com/group/comp.lang.python/browse_frm/thread/6df6e6b541a15bc2/09f28e26af0699b1
597597

598-
import textwrap
599-
from optparse import IndentedHelpFormatter
600-
601598

602599
class IndentedHelpFormatterWithNL(IndentedHelpFormatter):
603600
def _format_text(self, text):
@@ -652,7 +649,7 @@ def format_option(self, option):
652649
return "".join(result)
653650

654651

655-
### End class
652+
# End class
656653

657654
if __name__ == "__main__":
658655
main()

diffpy/srmise/applications/plot.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import mpl_toolkits.axisartist as AA
2020
import numpy as np
2121
from matplotlib.ticker import MultipleLocator
22-
from mpl_toolkits.axes_grid1 import make_axes_locatable
2322
from mpl_toolkits.axes_grid1.inset_locator import inset_axes
2423

2524
from diffpy.srmise import PDFPeakExtraction, PeakStability
@@ -107,7 +106,6 @@ def comparepositions(ppe, ip=None, **kwds):
107106
plt.plot(xe, ye, "g", lw=1.5, **ep_style)
108107

109108
if ip is not None:
110-
yb = (base, base)
111109
plt.axhline(base, linestyle=":", color="k")
112110
ax.yaxis.set_ticks([base + 0.5 * yideal, base + 0.5 * yext])
113111
ax.yaxis.set_ticklabels([yideal_label, yext_label])
@@ -134,7 +132,7 @@ def comparepositions(ppe, ip=None, **kwds):
134132

135133

136134
def dgseries(stability, **kwds):
137-
ax = kwds.get("ax", plt.gca())
135+
kwds.get("ax", plt.gca())
138136
dg_style = kwds.get("dg_style", default_dg_style)
139137

140138
scale = kwds.get("scale", 1.0)
@@ -222,7 +220,7 @@ def makeplot(ppe_or_stability, ip=None, **kwds):
222220
bottom_offset = kwds.get("bottom_offset", 3.0)
223221

224222
# Style options
225-
dg_style = kwds.get("dg_style", default_dg_style)
223+
kwds.get("dg_style", default_dg_style)
226224
gobs_style = kwds.get("gobs_style", default_gobs_style)
227225
gfit_style = kwds.get("gfit_style", default_gfit_style)
228226
gind_style = kwds.get("gind_style", default_gind_style)
@@ -240,7 +238,7 @@ def makeplot(ppe_or_stability, ip=None, **kwds):
240238
# Other options
241239
datalabel = kwds.get("datalabel", None)
242240
dgformatstr = kwds.get("dgformatstr", r"$\delta$g=%f")
243-
dgformatpost = kwds.get("dgformatpost", None) # ->userfunction(string)
241+
kwds.get("dgformatpost", None) # ->userfunction(string)
244242
show_fit = kwds.get("show_fit", True)
245243
show_individual = kwds.get("show_individual", True)
246244
fill_individual = kwds.get("fill_individual", True)
@@ -532,7 +530,6 @@ def on_draw(event):
532530

533531
def readcompare(filename):
534532
"""Returns a list of distances read from filename, otherwise None."""
535-
from diffpy.srmise.srmiseerrors import SrMiseDataFormatError, SrMiseFileError
536533

537534
# TODO: Make this safer
538535
try:
@@ -551,7 +548,7 @@ def readcompare(filename):
551548
try:
552549
for line in datastring.split("\n"):
553550
distances.append(float(line))
554-
except (ValueError, IndexError) as err:
551+
except (ValueError, IndexError):
555552
print("Could not read distances from '%s'. Ignoring file." % filename)
556553

557554
if len(distances) == 0:
@@ -620,7 +617,7 @@ def main():
620617
distances = readcompare(opts.compare)
621618

622619
setfigformat(figsize=(6.0, 4.0))
623-
figdict = makeplot(toplot, distances)
620+
makeplot(toplot, distances)
624621
if opts.output:
625622
plt.savefig(opts.output, format=opts.format, dpi=600)
626623
if opts.show:

diffpy/srmise/basefunction.py

+9-10
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
import numpy as np
2020
from numpy.compat import unicode
2121

22-
from diffpy.srmise.modelparts import ModelPart, ModelParts
23-
from diffpy.srmise.srmiseerrors import *
22+
from diffpy.srmise.srmiseerrors import SrMiseDataFormatError
2423

2524
logger = logging.getLogger("diffpy.srmise")
2625

@@ -120,7 +119,7 @@ def __init__(
120119
emsg = "Argument default_formats must specify 'default_input' " + "and 'default_output' as keys."
121120
raise ValueError(emsg)
122121
for f in self.default_formats.values():
123-
if not f in self.parformats:
122+
if f not in self.parformats:
124123
emsg = "Keys of argument default_formats must map to a " + "value within argument parformats."
125124
raise ValueError()
126125

@@ -140,7 +139,7 @@ def __init__(
140139
pass
141140
return
142141

143-
#### "Virtual" class methods ####
142+
# "Virtual" class methods ####
144143

145144
def actualize(self, *args, **kwds):
146145
"""Create ModelPart instance of self with given parameters. ("Virtual" method)"""
@@ -172,7 +171,7 @@ def _valueraw(self, *args, **kwds):
172171
emsg = "_valueraw must() be implemented in a BaseFunction subclass."
173172
raise NotImplementedError(emsg)
174173

175-
#### Class methods ####
174+
# Class methods ####
176175

177176
def jacobian(self, p, r, rng=None):
178177
"""Calculate jacobian of p, possibly restricted by range.
@@ -228,9 +227,9 @@ def transform_derivatives(self, pars, in_format=None, out_format=None):
228227
elif out_format == "default_input":
229228
out_format = self.default_formats["default_input"]
230229

231-
if not in_format in self.parformats:
230+
if in_format not in self.parformats:
232231
raise ValueError("Argument 'in_format' must be one of %s." % self.parformats)
233-
if not out_format in self.parformats:
232+
if out_format not in self.parformats:
234233
raise ValueError("Argument 'out_format' must be one of %s." % self.parformats)
235234
if in_format == out_format:
236235
return np.identity(self.npars)
@@ -263,9 +262,9 @@ def transform_parameters(self, pars, in_format=None, out_format=None):
263262
elif out_format == "default_input":
264263
out_format = self.default_formats["default_input"]
265264

266-
if not in_format in self.parformats:
265+
if in_format not in self.parformats:
267266
raise ValueError("Argument 'in_format' must be one of %s." % self.parformats)
268-
if not out_format in self.parformats:
267+
if out_format not in self.parformats:
269268
raise ValueError("Argument 'out_format' must be one of %s." % self.parformats)
270269
# if in_format == out_format:
271270
# return pars
@@ -335,7 +334,7 @@ def writestr(self, baselist):
335334
"""
336335
if self.base is not None and self.base not in baselist:
337336
emsg = "baselist does not include this BaseFunction's base function."
338-
raise ValueError("emsg")
337+
raise ValueError(emsg)
339338
lines = []
340339
# Write function type
341340
lines.append("function=%s" % repr(self.__class__.__name__))

doc/examples/parameter_summary.py

+18-18
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@
3737

3838
def run(plot=True):
3939

40-
## Initialize peak extraction
40+
# Initialize peak extraction
4141
# Create peak extraction object
4242
ppe = PDFPeakExtraction()
4343

4444
# Load the PDF from a file
4545
ppe.loadpdf("data/TiO2_fine_qmax26.gr")
4646

47-
###### Set up extraction parameters.
47+
# Set up extraction parameters.
4848
# In this section we'll examine the major extraction parameters in detail.
4949
# diffpy.srmise strives to provide reasonable default values for these
5050
# parameters. For normal use setting the range, baseline, and uncertainty
5151
# should be sufficient.
5252
kwds = {}
5353

54-
## Range
54+
# Range
5555
# Range defaults to the entire PDF if not specified.
5656
kwds["rng"] = [1.5, 10.0]
5757

58-
## dg
58+
# dg
5959
# diffpy.srmise selects model complexity based primarily on the uncertainty
6060
# of the PDF. Note that very small uncertainties (<1%) can make peak
6161
# extraction excessively slow. In general, the smaller the uncertainty the
@@ -80,7 +80,7 @@ def run(plot=True):
8080
# 1273-1283. doi:10.1107/S1600576714010516
8181
kwds["dg"] = 0.35 # Play with this value!
8282

83-
## baseline
83+
# baseline
8484
# As a crystal PDF, a linear baseline crossing the origin is appropriate.
8585
# Here we define the linear baseline B(r) = -.5*r + 0, and explicitly set
8686
# the y-intercept as a fixed parameter which will not be fit. For
@@ -91,7 +91,7 @@ def run(plot=True):
9191
slope = -0.65 # Play with this value!
9292
y_intercept = 0.0
9393
kwds["baseline"] = blfunc.actualize([slope, y_intercept], free=[True, False])
94-
## pf
94+
# pf
9595
# The pf (peakfunction) parameter allows setting the shape of peaks to be
9696
# extracted. Termination effects are added automatically to the peak
9797
# function during extraction. In the harmonic approximation of atomic
@@ -109,7 +109,7 @@ def run(plot=True):
109109
pf = GaussianOverR(0.7)
110110
kwds["pf"] = [pf] # Despite the list, only one entry is currently supported.
111111

112-
## qmax
112+
# qmax
113113
# PDFs typically report the value of qmax (i.e. the maximum momentum
114114
# transfer q in the measurement), but it can be specified explicitly also.
115115
# If the PDF does not report qmax, diffpy.srmise attempts to estimate it
@@ -119,7 +119,7 @@ def run(plot=True):
119119
# diffpy.srmise does not consider Nyquist sampling or termination effects.
120120
kwds["qmax"] = 26.0
121121

122-
## nyquist
122+
# nyquist
123123
# This parameter governs whether diffpy.srmise attempts to find a model
124124
# on a Nyquist-sampled grid with dr=pi/qmax, which is a grid where data
125125
# uncertainties are least correlated without loss of information. By
@@ -132,7 +132,7 @@ def run(plot=True):
132132
# doi:10.1103/PhysRevB.84.134105
133133
kwds["nyquist"] = True
134134

135-
## supersample
135+
# supersample
136136
# This parameter dictates the data be oversampled by at least this factor
137137
# (relative to the Nyquist rate) during the early stages of peak
138138
# extraction. If the input PDF is even more finely sampled, that level of
@@ -141,7 +141,7 @@ def run(plot=True):
141141
# finding and clustering process, but reduces speed.
142142
kwds["supersample"] = 4.0
143143

144-
## cres
144+
# cres
145145
# The cres (clustering resolution) parameter governs the sensitivity of the
146146
# clustering method used by diffpy.srmise. In short, when the data are
147147
# being clustered, data which are further than the clustering resolution
@@ -156,7 +156,7 @@ def run(plot=True):
156156
# Apply peak extraction parameters.
157157
ppe.setvars(**kwds)
158158

159-
## initial_peaks
159+
# initial_peaks
160160
# Initial peaks are peaks which are kept fixed during the early stages of
161161
# peak extraction, effectively condition results upon their values. Since
162162
# initial peaks are sometimes dependent on other SrMise parameters (e.g.
@@ -168,7 +168,7 @@ def run(plot=True):
168168
# diffpy.srmise estimate the peak parameters.
169169
# 2) Explicit specification of peak parameters.
170170

171-
## Initial peaks from approximate positions.
171+
# Initial peaks from approximate positions.
172172
# This routine estimates peak parameters by finding the peak-like cluster
173173
# containing the specified point. It does not search for occluded peaks,
174174
# so works best on well-separated peaks. It does, however, take any
@@ -177,7 +177,7 @@ def run(plot=True):
177177
for p in positions:
178178
ppe.estimate_peak(p) # adds to initial_peaks
179179

180-
## Initial peaks from explicit parameters.
180+
# Initial peaks from explicit parameters.
181181
# Adding initial peaks explicitly is similar to defining a baseline.
182182
# Namely, choosing a peak function and then actualizing it with given
183183
# parameters. For this example peaks are created from the same GaussianOverR
@@ -194,22 +194,22 @@ def run(plot=True):
194194
peaks.append(pf.actualize(p, free=[True, False, True], in_format="pwa"))
195195
ppe.add_peaks(peaks) # adds to initial_peaks
196196

197-
## Initial peaks and pruning
197+
# Initial peaks and pruning
198198
# While initial peaks condition what other peaks can be extracted, by
199199
# default they can also be pruned if a simpler model appears better. To
200200
# prevent this, they can be set as non-removable.
201201
for ip in ppe.initial_peaks:
202202
ip.removable = False
203203

204-
## Plot initial parameters
204+
# Plot initial parameters
205205
if plot:
206206
makeplot(ppe)
207207
plt.title("Initial Peaks")
208208

209-
###### Perform peak extraction
209+
# Perform peak extraction
210210
ppe.extract()
211211

212-
## Save output
212+
# Save output
213213
# The write() method saves a file which preserves all aspects of peak
214214
# extraction and its results, by convention using the .srmise extension,
215215
# and which can later be read by diffpy.srmise.
@@ -222,7 +222,7 @@ def run(plot=True):
222222
ppe.write("output/parameter_summary.srmise")
223223
ppe.writepwa("output/parameter_summary.pwa")
224224

225-
## Plot results.
225+
# Plot results.
226226
# Display plot of extracted peak. It is also possible to plot an existing
227227
# .srmise file from the command line using
228228
# srmise output/TiO2_parameterdetail.srmise --no-extract --plot

0 commit comments

Comments
 (0)