-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxsePaper4.bfin
56 lines (49 loc) · 2.73 KB
/
xsePaper4.bfin
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
#==============================================================================
#==== BlueFin input data file =================================================
#==============================================================================
# The file is expected to have the following format.
# Blank lines and lines with only empty spaces are ignored.
# Lines starting by '#' are reserved for comments and are ignored.
# Data lines are composed of fields separated by one or more empty spaces.
# Fields cannot contain empty spaces, with the exception of the title line.
# The next line must have 2 fields: 'TITLE' and the title of the
# BlueFin combination, which must be enclosed within double quotes
# and may contain only alphanumeric characters or spaces or hyphens.
TITLE "Cross section example XSE"
# The next line must have 2 fields: 'NOBS' and the number of observables.
NOBS 1
# The next line must have 2 fields: 'NMEA' and the number of measurements.
NMEA 4
# The next line must have 2 fields: 'NERR' and the number of error sources.
NERR 3
# The next NERR+3 lines must have NMEA+1 fields in this format:
# - in the 1st line: 'MEANAME' followed by NMEA distinct measurement names
# (measurement names may contain only alphanumeric characters or spaces);
# - in the 2nd line: 'OBSNAME' followed by the NMEA names (with NOBS distinct
# values) of the observables measured by the corresponding measurements
# (observable names may contain only alphanumeric characters or spaces
# and should preferably be at most 3 characters long);
# - in the 3rd line: 'MEAVAL' followed by the NMEA measured central values;
# - in each of the last NERR lines: the error source name followed by the
# NMEA partial errors for each measurement due to the given error source
# (error source names may contain only alphanumeric characters or spaces).
MEANAME AXS BXS CXS DXS
OBSNAME xs xs xs xs
MEAVAL 95.00 144.00 115.00 122.00
Unc 10.00 14.00 18.00 25.00
Bkgd 10.00 40.00 3.00 0
Lumi 11.00 14.00 10.00 0
# The next NMEA*(NMEA-1)/2+1 rows must have NERR+2 fields in this format:
# - in the 1st line: 'CMEA1' 'CMEA2' (correlations between 2 measurements)
# followed by the NERR error source names in the same order used above;
# - in each of the NMEA*(NMEA-1)/2 last lines: the names of two distinct
# measurements followed by the NERR correlations between the partial
# errors on the two measurements due to corresponding error source.
# Measurements must appear in the same order listed above.
CMEA1 CMEA2 Unc Bkgd Lumi
AXS BXS 0 1 1
AXS CXS 0 1 1
AXS DXS 0 1 1
BXS CXS 0 1 1
BXS DXS 0 1 1
CXS DXS 0 1 1