/usr/include/paw/ntuple/c_pawchn.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 | /*
* pawchn.h --
* Map the /PAWCHN/, /PAWCHC/, /PAWCH2/ and /PAWCH3/ commons
*
* Original: 3-Apr-1995 11:56
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: c_pawchn.h,v 1.3 1999/06/28 15:08:28 couet Exp $
*
* $Log: c_pawchn.h,v $
* Revision 1.3 1999/06/28 15:08:28 couet
* - use now cfortran.h in $CVSCOSRC
*
* Revision 1.2 1996/04/23 18:37:49 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_PAWCHN
#define CERN_PAWCHN
#include <cfortran.h>
typedef struct {
int chain;
int nchevt;
int ichevt;
} pawchn_def;
#define PAWCHN COMMON_BLOCK(PAWCHN,pawchn)
COMMON_BLOCK_DEF(pawchn_def,PAWCHN);
typedef struct {
char cfile[128];
} pawchc_def;
#define PAWCHC COMMON_BLOCK(PAWCHC,pawchc)
COMMON_BLOCK_DEF(pawchc_def,PAWCHC);
typedef struct {
char curchn[80];
} pawch2_def;
#define PAWCH2 COMMON_BLOCK(PAWCH2,pawch2)
COMMON_BLOCK_DEF(pawch2_def,PAWCH2);
typedef struct {
int chnxmt;
} pawch3_def;
#define PAWCH3 COMMON_BLOCK(PAWCH3,pawch3)
COMMON_BLOCK_DEF(pawch3_def,PAWCH3);
#endif /* CERN_PAWCHN */
|