/usr/include/paw/ntuple/errors.h is in libpawlib2-dev 1:2.14.04.dfsg.2-9.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* errors.h - define errors passed around in the parser.
*
* Original: 13-Jul-1994 11:00
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: errors.h,v 1.8 1996/04/23 18:37:56 maartenb Exp $
*
* $Log: errors.h,v $
* Revision 1.8 1996/04/23 18:37:56 maartenb
* - Add RCS keywords
*
*
*/
#ifndef _errors_h
#define _errors_h
typedef enum _return_value_ {
R_NOERR, /* all is fine */
R_TYPE_ERROR, /* wrong type in expression */
R_NAME_UNDEF, /* name undefined */
R_NOT_IMPLEMENTED, /* type of sub-expression not implemented */
R_ALLOC_ERROR, /* dynamic allocation failed */
R_INTERNAL_ERROR, /* inconsistency detected */
R_MATH_ERROR, /* error in math of expression */
R_SYNTAX_ERROR, /* error during parsing */
R_LOAD_ERROR, /* error during (comis) load of file */
R_NOCUT, /* Cut does not exist */
R_RECURSIVECUT, /* Cut is recursively defined */
R_NO_HISTOGRAM, /* id is not a histogram */
R_SHAPE_ERROR, /* Runtime error, not matching shapes */
R_IOERROR, /* Error reading or writing a file*/
R_STOP, /* User requested break (e.g. scan)*/
R_NOEVT /* No events were selected */
} ReturnValue;
#endif /* _errors_h */
|