diffpy.pdfgui package
GUI for PDF simulation and structure refinement.
Subpackages
Submodules
diffpy.pdfgui.utils module
Small shared routines: numericStringSort – sort list of strings according to numeric value safeCPickleDumps – same as pickle.dumps, but safe for NaN and Inf
- diffpy.pdfgui.utils.numericStringSort(lst)[source]
Sort list of strings inplace according to general numeric value. Each string gets split to string and integer segments to create keys for comparison. Signs, decimal points and exponents are ignored.
lst – sorted list of strings
No return value to highlight inplace sorting.
diffpy.pdfgui.tui module
Text user interface - utilities for extracting data from project files.
- class diffpy.pdfgui.tui.LoadProject(filename=None)[source]
Bases:
object
Load and access data in pdfgui project file.
Protected instance data:
_project – instance of PDFGuiControl with loaded project file.
- getCalculations(fits=None)[source]
Return list of all calculations contained in specified fits.
- fits – optional list of Fitting objects that own datasets.
When not specified, get datasets from all fits defined in the project.
Return list of Calculation objects.
- getDataSets(fits=None)[source]
Return a list of all datasets contained in specified fits.
- fits – optional list of Fitting objects that own datasets.
When not specified, get datasets from all fits defined in the project.
Return list of FitDataSet objects.
- getDopings(datasets=None)[source]
Extract doping values from a list of datasets.
- datasets – optional list of FitDataSet objects. When not
specified, doping values are extracted from all datasets in the project.
Return list of floating point values. The list may contain None-s for datasets with undefined doping.
- getPhases(fits=None)[source]
Collect all phases contained in specified fits.
- fits – optional list of Fitting objects that own datasets.
When not specified, get phases from all fits defined in the project.
Return list of FitStructure objects.
- getTemperatures(datasets=None)[source]
Extract temperatures from a list of datasets.
- datasets – optional list of FitDataSet objects. When not
specified, temperatures are extracted from all datasets in the project.
Return list of floating point values. The list may contain None-s for datasets with undefined temperature.