source: SH_SHM/trunk/source/scerrors.h @ 374

Revision 16, 1.4 KB checked in by marcus, 15 years ago (diff)

r1 | svn | 2007-12-13 11:10:29 +0100 (Do, 13 Dez 2007) | 2 lines

Initial import

Line 
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 */
Note: See TracBrowser for help on using the repository browser.