/usr/include/paw/ntuple/hbook_defs.h is in libpawlib2-dev 1:2.14.04.dfsg.2-7ubuntu1.
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 43 44 45 46 47 48 49 50 51 52 53 | /*
* hbook_defs.h --
* Maximum sizes and numbers hard-coded into HBOOK.
*
* Original: 18-Jan-1995 14:22
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: hbook_defs.h,v 1.4 1996/04/23 18:38:02 maartenb Exp $
*
* $Log: hbook_defs.h,v $
* Revision 1.4 1996/04/23 18:38:02 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_HBOOK_DEFS
#define CERN_HBOOK_DEFS
/* The maximum length of a RZ pathname argument */
#define MAX_RZ_PATH 1024 /* is this defined somewhere ?? */
/* The maximum length of ntuple variable (column) name */
#define MAX_NAME_LEN 32
/* The maximum length of ntuple block name */
#define MAX_BLOCK_LEN 8
/* The maximum number of dimensions in a variable */
/* this is actualy only 7, but the define doubles as */
/* the maximum number of arguments to a routine */
/* maybe it should be even raised ? */
#define MAX_DIMENSION 10
/* The maximum number of columns in a row wise ntuple */
#define MAX_RWN_COLS 512
/* The maximum number of characters in a histogram label (for hlabel etc.) */
#define MAX_LABEL_LEN 16
#endif /* CERN_HBOOK_DEFS */
|