1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
## -*- config -*-
###########################################################################
## This configuration file is for Demeter version 0.9.21.
##
## Demeter is copyright (c) 2007-2016 Bruce Ravel
## http://bruceravel.github.io/home
##
## Ifeffit is copyright (c) 1992-2016 Matt Newville
## https://github.com/newville/ifeffit
##
## The latest version of Demeter can always be found at
## http://bruceravel.github.io/demeter/
##
## -------------------------------------------------------------------
## All rights reserved. This program is free software; you can
## redistribute it and/or modify it provided that the above notice
## of copyright, these terms of use, and the disclaimer of
## warranty below appear in the source code and documentation, and
## that none of the names of Argonne National Laboratory, The
## University of Chicago, University of Washington, or the authors
## appear in advertising or endorsement of works derived from this
## software without specific prior written permission from all
## parties.
##
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
## EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
## OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
## NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
## HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
## WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
## FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
## OTHER DEALINGS IN THIS SOFTWARE.
## -------------------------------------------------------------------
###########################################################################
## This file is the master configuration file for Demeter. It is used
## to populate the Demeter::Config object and to generate the files
## demeterrc and demeter.ini. It can also be used to populate the
## preferences dialog in a GUI.
##
## These are actually fairly structured files. Beginning-of-line
## whitespace (2 spaces, no more, no less) is important in the
## parameter descriptions, as are the empty lines and the lines that
## begin with a dot. The empty lines denote separations between
## entries. The dots are used to build lists in the descriptions.
## The parser for this file is fairly stupid, so if you make mistakes
## in the use of whitespace, bad things will happen. An emacs major
## mode is provided, the main purpose of which is to color text as an
## indication of correct formatting. Also, order matters. It is very
## important that "variable=" comes first, then "type=", then
## "default=", then the rest.
## variable types suggested widget
## string Entry
## regex Entry
## real Entry -- validates to accept only numbers
## positive integer Entry with incrementers, restricted to be >= 0
## list Menubutton or some other multiple selection widget
## boolean Checkbutton
## keypress Entry -- rigged to display one character at a time
## color Button -- launches color browser
## font Button -- launches font browser
include file.demeter_conf ## file import parameters
include bkg.demeter_conf ## background removal parameters
include clamp.demeter_conf ## background clamp parameters
include edgestep.demeter_conf ## determination of edge step uncertainty
include fft.demeter_conf ## forward Fourier transform parameters
include bft.demeter_conf ## backward Fourier transform parameters
include xanes.demeter_conf ## XANES parameters
include dispersive.demeter_conf ## dispersive XAS parameters
include fit.demeter_conf ## fit parameters
include interpolation.demeter_conf ## interpolation parameters
include process.demeter_conf ## data processing (rebin, convolve, )
include lcf.demeter_conf ## linear combination fitting
include analysis.demeter_conf ## peak fitting, PCA (LR, diff, ...)
include happiness.demeter_conf ## happiness (semantic fitting evaluation) parameters
include warnings.demeter_conf ## warnings (evaluation of pathparams after a fit)
include operations.demeter_conf ## operations parameters
include atoms.demeter_conf ## atoms i/o parameters
include feff.demeter_conf ## feff i/o parameters
include plot.demeter_conf ## plotting parameters
include gnuplot.demeter_conf ## gnuplot-specific parameters
include larch.demeter_conf ## larch-specific parameters
include ornaments.demeter_conf ## plotting ornaments parameters (indicators markers)
include pathfinder.demeter_conf ## Feff pathfinder parameters
include gds.demeter_conf ## GDS in GUI parameters
include fspath.demeter_conf ## quick first shell scattering
include histogram.demeter_conf ## histogram creation
include screen.demeter_conf ## screen UI
include watcher.demeter_conf ## data watcher
include athena.demeter_conf ## Athena
include artemis.demeter_conf ## Artemis
include hephaestus.demeter_conf ## Hephaestus
include metis.demeter_conf ## Metis
# include /home/bruce/codes/demeter/t/test.demeter.conf
|