/usr/include/paw/ntuple/c_hcbook.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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | /*
* hcbook.h --
* Map the /PAWC/ and /HCBOOK/ commons
*
* Original: 3-Apr-1995 12:02
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: c_hcbook.h,v 1.5 1999/06/28 15:08:21 couet Exp $
*
* $Log: c_hcbook.h,v $
* Revision 1.5 1999/06/28 15:08:21 couet
* - use now cfortran.h in $CVSCOSRC
*
* Revision 1.4 1996/04/23 18:37:42 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_HCBOOK
#define CERN_HCBOOK
#include <cfortran.h>
typedef struct {
int npaw;
int ixpawc;
int ihdiv;
int ixhigz;
int ixku;
float fenc[5];
union {
int _lmain;
int _lq[1];
} lq_base;
int dummy_filler[7];
union {
float _q[1];
int _iq[1];
} iq_base;
float hcv[9981];
} pawc_def;
#define lmain lq_base._lmain
#define lq_eqv lq_base._lq
#define q_eqv iq_base._q
#define iq_eqv iq_base._iq
#define PAWC COMMON_BLOCK(PAWC,pawc)
COMMON_BLOCK_DEF(pawc_def,PAWC);
typedef struct {
int hversn;
int ihwork;
int lhbook;
int lhplot;
int lgtit;
int lhwork;
int lcdir;
int lsdir;
int lids;
int ltab;
int lcid;
int lcont;
int lscat;
int lprox;
int lproy;
int lslix;
int lsliy;
int lbanx;
int lbany;
int lprx;
int lpry;
int lfix;
int llid;
int lr1;
int lr2;
int lname;
int lchar;
int lint;
int lreal;
int lblok;
int llblk;
int lbufm;
int lbuf;
int ltmpm;
int ltmp;
int ltmp1;
int lhplip;
int lhdum[9];
int lhfit;
int lfunc;
int lhfco;
int lhfna;
int lcidn;
} hcbook_def;
#define HCBOOK COMMON_BLOCK(HCBOOK,hcbook)
COMMON_BLOCK_DEF(hcbook_def,HCBOOK);
#include <paw/ntuple/c_hck.h>
#endif /* CERN_HCBOOK */
|