/usr/include/paw/ntuple/c_hcpiaf.h is in libpawlib2-dev 1:2.14.04.dfsg.2-9.
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 | /*
* hcpiaf.h --
* Map the /HCPIAF/ /HCPIA1/ and /HCPIAC/ commons
*
* Original: 3-Apr-1995 10:59
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: c_hcpiaf.h,v 1.3 1999/06/28 15:08:26 couet Exp $
*
* $Log: c_hcpiaf.h,v $
* Revision 1.3 1999/06/28 15:08:26 couet
* - use now cfortran.h in $CVSCOSRC
*
* Revision 1.2 1996/04/23 18:37:47 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_HCPIAF
#define CERN_HCPIAF
#include <cfortran.h>
#define MXSLPF 32
typedef struct {
int ntpiaf;
int connpf;
int servpf;
int mastpf;
int slavpf;
int clinpf;
int clutpf;
int loglpf;
int nslave;
int nslbad;
int nslvpf;
int slinpf[MXSLPF];
int slutpf[MXSLPF];
int ngsize;
int mysid;
int smask;
float srin;
float srout;
float svmio;
float stuser;
float stcpu;
int maspid;
} hcpiaf_def;
#define HCPIAF COMMON_BLOCK(HCPIAF,hcpiaf)
COMMON_BLOCK_DEF(hcpiaf_def,HCPIAF);
typedef struct {
char slhopf[MXSLPF][16];
char slhhad[MXSLPF][16];
char piafrc[64];
} hcpia1_def;
#define HCPIA1 COMMON_BLOCK(HCPIA1,hcpia1)
COMMON_BLOCK_DEF(hcpia1_def,HCPIA1);
typedef struct {
char chsmpf[80];
char chlmpf[256];
} hcpiac_def;
#define HCPIAC COMMON_BLOCK(HCPIAC,hcpiac)
COMMON_BLOCK_DEF(hcpiac_def,HCPIAC);
#endif /* CERN_HCPIAF */
|