1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Common parameters.
char function[SZ_FNAME] # Fitting function
char ecfstr[SZ_LINE] # Working char string
int gstype # Surface function type
int xorder # X order of surface function
int yorder # Y order of surface function
int niterate # Number of rejection iterations
int nreject # Number of rejected points
int xtype # X axis type
int ytype # Y axis type
int slope # Slope of order
int offset # Order offset of fit
double low, high # Low and high rejection thresholds
double xmin, xmax # X range
double ymin, ymax # Y range
double shift # First order shift
double rms # RMS of fit
common /ecfcom/ low, high, xmin, xmax, ymin, ymax, shift, rms, gstype,
xorder, yorder, niterate, nreject, xtype, ytype, slope, offset,
function, ecfstr
|