This file is indexed.

/usr/include/paw/ntuple/qp_hbook_if.h is in libpawlib2-dev 1:2.14.04.dfsg.2-9.1build1.

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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 *  qp_hbook_if.h  --
 *	Interface of convenience routines for hbook.
 *
 *  Original:  8-May-1995 22:54
 *
 *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
 *
 *  $Id: qp_hbook_if.h,v 1.9 1996/09/12 09:28:57 couet Exp $
 *
 *  $Log: qp_hbook_if.h,v $
 *  Revision 1.9  1996/09/12 09:28:57  couet
 *  - after NTUPLE commands using a full path name ie:
 *
 *    NT/PLOT //lun1/10.x
 *
 *    The current working directory was changed to //lun1
 *
 *  Revision 1.8  1996/04/23 18:38:44  maartenb
 *  - Add RCS keywords
 *
 *
 */

#ifndef CERN_QP_HBOOK_IF
#define CERN_QP_HBOOK_IF

#include <paw/ntuple/cern_types.h>
#include <paw/ntuple/hbook_defs.h>
#include <paw/ntuple/smap.h>


extern char	h_rwn_chtitl[128];
extern int	h_rwn_nvar;
extern char	h_rwn_tags[MAX_RWN_COLS][9];
extern float	h_rwn_rlow[MAX_RWN_COLS];
extern float	h_rwn_rhigh[MAX_RWN_COLS];


int
h_load_nt(
	char *		id_string,
	char **		id_path,
	int *		idp
	);

void
h_reset_dir(
	   );

int
h_load_histo(
	char *		id_string,
	int *		idp,
	int *		id_dim
	);

void
h_hnocol(
	int		id,
	int *		colp
	);

void
h_hnoent(
	int		idn,
	bool		use_chain,
	int *		ep
	);

bool
h_flag_1d(
	int		id
	);

bool
h_flag_2d(
	int		id
	);

bool
h_flag_profile(
	int		id
	);


int
h_rwn_getInfo(
	int		idn
);


int
h_rwn_getIndex(
	int		idn,
	char *		const name
);


SMap
h_get_labels(
	int		id,
	char		*chopt
);


void
h_hbook1_labels(
	int		idh,
	char *		title,
	SMap		label_list
);


void
h_hbook2_labels(
	int		idh,
	char *		title,
	SMap		labelx_list,
	SMap		labely_list,
	int		nbin[],
	float		min[],
	float		max[]
);

#endif	/*	CERN_QP_HBOOK_IF	*/