This file is indexed.

/usr/include/ncarg/hlu/CoordArrays.h is in libncarg-dev 6.3.0-6build1.

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
/*
 *      $Id: CoordArrays.h,v 1.9 1995-04-07 10:41:21 boote Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1993			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		CoordArrays.h
 *
 *	Author:		Jeff W. Boote
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Wed Jul 28 11:34:00 MDT 1993
 *
 *	Description:	Public declarations for CoordArrays object.
 */
#ifndef _NCoordArrays_h
#define _NCoordArrays_h
#include <ncarg/hlu/DataItem.h>

/*
 * New Resource Names
 */

#define	NhlNcaXArray	"caXArray"
#define	NhlCcaXArray	"CaXArray"
#define	NhlNcaYArray	"caYArray"
#define	NhlCcaYArray	"CaYArray"

#define	NhlNcaXCast	"caXCast"
#define	NhlNcaYCast	"caYCast"
#define	NhlCcaCast	"CaCast"

#define	NhlNcaCopyArrays	"caCopyArrays"

#define	NhlNcaXMissingV	"caXMissingV"
#define	NhlNcaYMissingV	"caYMissingV"
#define	NhlNcaXMaxV	"caXMaxV"
#define	NhlCcaXMaxV	"CaXMaxV"
#define	NhlNcaYMaxV	"caYMaxV"
#define	NhlCcaYMaxV	"CaYMaxV"
#define	NhlNcaXMinV	"caXMinV"
#define	NhlCcaXMinV	"CaXMinV"
#define	NhlNcaYMinV	"caYMinV"
#define	NhlCcaYMinV	"CaYMinV"

#define	NhlTcaCastMode	"caCastMode"

typedef enum _NhlcaCastMode {
	NhlSINGLEVECTOR = 1,
	NhlMULTIPLEVECTORS = 2,
	NhlSPLITVECTORS = 3
} NhlcaCastMode;

extern NhlClass NhlcoordArraysClass;

#endif /*_NCoordArrays_h */