22
22
import re
23
23
import sys
24
24
25
- import matplotlib .pyplot as plt
26
25
import numpy as np
27
- import scipy as sp
28
- from scipy .optimize import leastsq
29
26
27
+ from diffpy .srmise import srmiselog
30
28
from diffpy .srmise .baselines import Baseline
31
29
from diffpy .srmise .modelparts import ModelParts
32
30
from diffpy .srmise .peaks import Peak , Peaks
39
37
40
38
logger = logging .getLogger ("diffpy.srmise" )
41
39
42
- from diffpy .srmise import srmiselog
43
-
44
40
45
41
class ModelCovariance (object ):
46
42
"""Helper class preserves uncertainty info (full covariance matrix) for a fit model.
@@ -201,8 +197,8 @@ def transform(self, in_format, out_format, **kwds):
201
197
subg = np .identity (p .npars (True ))
202
198
except Exception as e :
203
199
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 ))
206
202
)
207
203
subg = np .identity (p .npars (True ))
208
204
@@ -211,8 +207,8 @@ def transform(self, in_format, out_format, **kwds):
211
207
p .pars = p .owner ().transform_parameters (p .pars , in_format , out_format )
212
208
except Exception as e :
213
209
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 ))
216
212
)
217
213
subg = np .identity (p .npars (True ))
218
214
@@ -600,21 +596,21 @@ def factory(mcstr, **kwds):
600
596
baselinefunctions = header [res .end () :].strip ()
601
597
header = header [: res .start ()]
602
598
603
- ### Instantiating baseline functions
599
+ # Instantiating baseline functions
604
600
if readblf :
605
601
blfbaselist = []
606
602
res = re .split (r"(?m)^#+ BaselineFunction \d+\s*(?:#.*\s+)*" , baselinefunctions )
607
603
for s in res [1 :]:
608
604
blfbaselist .append (BaseFunction .factory (s , blfbaselist ))
609
605
610
- ### Instantiating peak functions
606
+ # Instantiating peak functions
611
607
if readpf :
612
608
pfbaselist = []
613
609
res = re .split (r"(?m)^#+ PeakFunction \d+\s*(?:#.*\s+)*" , peakfunctions )
614
610
for s in res [1 :]:
615
611
pfbaselist .append (BaseFunction .factory (s , pfbaselist ))
616
612
617
- ### Instantiating header data
613
+ # Instantiating header data
618
614
# peak_funcs
619
615
res = re .search (r"^peak_funcs=(.*)$" , header , re .M )
620
616
peak_funcs = eval (res .groups ()[0 ].strip ())
@@ -631,19 +627,19 @@ def factory(mcstr, **kwds):
631
627
res = re .search (r"^slice=(.*)$" , header , re .M )
632
628
cluster_slice = eval (res .groups ()[0 ].strip ())
633
629
634
- ### Instantiating BaselineObject
630
+ # Instantiating BaselineObject
635
631
if re .match (r"^None$" , baselineobject ):
636
632
baseline = None
637
633
else :
638
634
baseline = Baseline .factory (baselineobject , blfbaselist )
639
635
640
- ### Instantiating model
636
+ # Instantiating model
641
637
model = Peaks ()
642
638
res = re .split (r"(?m)^#+ ModelPeak\s*(?:#.*\s+)*" , model_peaks )
643
639
for s in res [1 :]:
644
640
model .append (Peak .factory (s , pfbaselist ))
645
641
646
- ### Instantiating start data
642
+ # Instantiating start data
647
643
# read actual data - r, y, dy
648
644
arrays = []
649
645
if hasr :
@@ -664,9 +660,10 @@ def factory(mcstr, **kwds):
664
660
# raise SrMiseDataFormatError if something goes wrong
665
661
try :
666
662
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 ):
669
665
emsg = "Number of value fields does not match that given by '%s'" % start_data_info
666
+ raise IndexError (emsg )
670
667
for a , v in zip (arrays , line .split ()):
671
668
a .append (float (v ))
672
669
except (ValueError , IndexError ) as err :
@@ -847,7 +844,7 @@ def deletepeak(self, idx):
847
844
848
845
def estimatepeak (self ):
849
846
"""Attempt to add single peak to empty cluster. Return True if successful."""
850
- ### STUB!!! ###
847
+ # STUB!!! ###
851
848
# Currently only a single peak function is supported. Dynamic
852
849
# selection from multiple types may require additional support
853
850
# within peak functions themselves. The simplest method would
@@ -901,7 +898,7 @@ def fit(
901
898
if estimate :
902
899
try :
903
900
self .estimatepeak ()
904
- except SrMiseEstimationError as e :
901
+ except SrMiseEstimationError :
905
902
logger .info ("Fit: No model to fit, estimation not possible." )
906
903
return
907
904
else :
@@ -1278,7 +1275,7 @@ def prune(self):
1278
1275
msg = ["====Pruning fits:====" , "Original model:" , "%s" , "w/ quality: %s" ]
1279
1276
logger .info ("\n " .join (msg ), best_model , best_qual .stat )
1280
1277
1281
- #### Main prune loop ####
1278
+ # Main prune loop ####
1282
1279
while check_models .count (None ) < len (check_models ):
1283
1280
1284
1281
# Cache value of individual peaks for best current model.
0 commit comments