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
|
## -*- 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 contains the file import configuration group for Demeter
######################################################################
section=file
section_description
These parameters influence how data are imported.
variable=i0_regex
type=regex
default=i(0$|o)
description
A perl regular expression used to recognize which column in a column
data file contains the data from the normalization (I0) detector.
The default value "i(0$|o)" matches any of i0, I0, io, Io, and IO.
Note that the interpretation of this parameter depends on the value
of the match_as preference. "i{0,o}" is the glob expression that is
pretty close to the default regular expression.
variable=transmission_regex
type=regex
default=^i($|1$|t)
description
A perl regular expression used to recognize which column in a column
data file contains the data from the transmission detector. The
default value "^i($|1$|t)" matches any of i, I, it, It, IT, i1, and
I1. Note that the interpretation of this parameter depends on the
value of the match_as preference. "i{1,t}" is the glob expression
that is pretty close to the default regular expression.
variable=fluorescence_regex
type=regex
default=i[fy]
description
A perl regular expression used to recognize which column in a column
data file contains the data from the fluorescence detector or the
electron yield detector. The default value "i[fy]" matches any of
if, If, IF, iy, Iy, and IY. Note that the interpretation of this
parameter depends on the value of the match_as preference. "i{f,y}"
is the glob expression that is pretty close to the default regular
expression.
variable=minlength
type=positive integer
default=20
description
This is the minimum number of data points a data file must have to
be recognized as data. That is, a file with fewer than this number
of points should be rejected as data.
variable=chik_out
type=list
options=all 0 1 2 3 kw
default=all
description
This sets the style of an output chi(k) file. The default value of
all says to write a multicolumn file containing all k-weightings
from 0 to 3 plus a column containing the window function in k. The
integer values say to export a 2-column file containing only k and
that k-weight of chi. The kw options also exports a two-column
file, but using the arbintrary k-weight value.
|