musrfit/src/tests/spirit/fcnInput.txt
2008-02-13 14:18:46 +00:00

30 lines
773 B
Plaintext

#----------------------------------------------
# function input file
#----------------------------------------------
#
# '#' are comment lines
#
# The file has the following structure:
#
# PAR <par1> <par2> ... <parN>
# MAP <map1> <map2> ... <mapM>
# FUNCTIONS
# fun1 = <function>
# fun2 = <function>
# funX = <function>
# END
#----------------------------------------------
PAR 1.0 2.1 3.5 -0.87 0.87
MAP 2 1 4 5
FUNCTIONS
#fun0 = sin(par3/(par1+map2))
fun1 = cos(par2)
#fun0 = par1 + map3 * cos(cos(par2 - map1))
#fun8 = log(sin(par1)) + exp(-1.0*map2)
#fun1 = par1 + map1 * (0.01355+par1*(2.1 - (-2.3 / 3.4)))
#fun2 = par1 * par2 - map3
#fun3 = -3.2 + (par2-par1)/(map2+map3)
#fun7 = 1.2
END
#----------------------------------------------