Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:05:28

0001 /*
0002  *  hbook_defs.h  --
0003  *  Maximum sizes and numbers hard-coded into HBOOK.
0004  *
0005  *  Original: 18-Jan-1995 14:22
0006  *
0007  *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
0008  *
0009  *  $Id$
0010  *
0011  *  $Log$
0012  *  Revision 1.4  1996/04/23 18:38:02  maartenb
0013  *  - Add RCS keywords
0014  *
0015  *
0016  */
0017 
0018 #ifndef CERN_HBOOK_DEFS
0019 #define CERN_HBOOK_DEFS
0020 
0021 /* The maximum length of a RZ pathname argument */
0022 
0023 #define MAX_RZ_PATH 1024        /* is this defined somewhere ?? */
0024 
0025 /* The maximum length of ntuple variable (column) name */
0026 
0027 #define MAX_NAME_LEN    32
0028 
0029 
0030 /* The maximum length of ntuple block name */
0031 
0032 #define MAX_BLOCK_LEN   8
0033 
0034 
0035 /* The maximum number of dimensions in a variable   */
0036 /* this is actualy only 7, but the define doubles as    */
0037 /* the maximum number of arguments to a routine     */
0038 /* maybe it should be even raised ?         */
0039 
0040 #define MAX_DIMENSION   10
0041 
0042 
0043 /* The maximum number of columns in a row wise ntuple */
0044 
0045 #define     MAX_RWN_COLS    512
0046 
0047 
0048 /* The maximum number of characters in a histogram label (for hlabel etc.) */
0049 
0050 #define MAX_LABEL_LEN   16
0051 
0052 
0053 #endif  /*  CERN_HBOOK_DEFS */