1 | |
---|
2 | /* file SCERRORS.H |
---|
3 | * ========== |
---|
4 | * |
---|
5 | * version 2, 22-MAY-2006 |
---|
6 | * |
---|
7 | * error codes of module SHCORR |
---|
8 | * K. Stammler, 22-MAY-91 |
---|
9 | */ |
---|
10 | |
---|
11 | |
---|
12 | /* |
---|
13 | * |
---|
14 | * SeismicHandler, seismic analysis software |
---|
15 | * Copyright (C) 1996, Klaus Stammler, Federal Institute for Geosciences |
---|
16 | * and Natural Resources (BGR), Germany |
---|
17 | * |
---|
18 | * This program is free software; you can redistribute it and/or modify |
---|
19 | * it under the terms of the GNU General Public License as published by |
---|
20 | * the Free Software Foundation; either version 2 of the License, or |
---|
21 | * (at your option) any later version. |
---|
22 | * |
---|
23 | * This program is distributed in the hope that it will be useful, |
---|
24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
26 | * GNU General Public License for more details. |
---|
27 | * |
---|
28 | * You should have received a copy of the GNU General Public License |
---|
29 | * along with this program; if not, write to the Free Software |
---|
30 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
---|
31 | * |
---|
32 | */ |
---|
33 | |
---|
34 | |
---|
35 | #ifndef __SCERRORS |
---|
36 | #define __SCERRORS |
---|
37 | |
---|
38 | #define SCE_OFFSET 2400 |
---|
39 | #define SCE_NOERROR 0 |
---|
40 | #define SCE_ZEROWDW (SCE_OFFSET+1) /* zero window specified */ |
---|
41 | #define SCE_SHORTTRC (SCE_OFFSET+2) /* 2. correlation trace too short */ |
---|
42 | #define SCE_UKCCMODE (SCE_OFFSET+3) /* unknown correlation mode */ |
---|
43 | #define SCE_MXDIM (SCE_OFFSET+4) /* wrong dimension in MATRIXHD.C */ |
---|
44 | |
---|
45 | #endif /* __SCERRORS */ |
---|