This file is indexed.

/usr/include/ncarg/hlu/CurvilinearTransObjP.h is in libncarg-dev 6.2.0-3+b1.

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
/*
 *      $Id: CurvilinearTransObjP.h,v 1.3 2004-12-23 22:45:16 dbrown Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  2002			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		CurvilinearTransObjP.h
 *
 *	Author:		David I. Brown
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Mon Feb 11 15:14:27 MST 2002
 *
 *	Description:	Private header file for curvilinear type 2 grid 
 *			transformations.
 */
#ifndef _NCurvilinearTransObjP_h
#define _NCurvilinearTransObjP_h

#include <ncarg/hlu/TransObjP.h>
#include <ncarg/hlu/CurvilinearTransObj.h>

typedef struct _NhlCurvilinearTransObjLayerPart {
	/* Publically settable resources */

	NhlGenArray	x_coord_points_ga;
	float		x_min;
	float		x_max;
	NhlBoolean	x_reverse;
	NhlGenArray	y_coord_points_ga;
	float		y_min;
	float		y_max;
	NhlBoolean	y_reverse;
	
	/* Private fields */
	NhlGenArray	x_crv_ga;
	NhlGenArray	y_crv_ga;
	int		*ixmin;
	int		*ixmax;
	int		*iymin;
	int		*iymax;

	int		xaxis_size;
	int		yaxis_size;
	int		msize;
	int		nsize;

        double		x_crv_min;
        double		x_crv_max;
	double          x_crv_ext;
        double		y_crv_min;
        double		y_crv_max;
	double          y_crv_ext;

	float		ur;
	float 		ul;
	float		ut;
	float		ub;
	float 		compc_x_min;
	float		compc_x_max;
	float		compc_y_min;
	float 		compc_y_max;
	int 		log_lin_value;

	int		ixb,iyb,ixe,iye;
	int             handedness_sign;

	NhlCompareDat	*xmin_dat;
	NhlCompareDat	*xmax_dat;
	NhlCompareDat	*ymin_dat;
	NhlCompareDat	*ymax_dat;
	NhlCompareDat	*compc_xmin_dat;
	NhlCompareDat	*compc_xmax_dat;
	NhlCompareDat	*compc_ymin_dat;
	NhlCompareDat	*compc_ymax_dat;
	NhlCompareDat	*save_compc_xmin_dat;
	NhlCompareDat	*save_compc_xmax_dat;
	NhlCompareDat	*save_compc_ymin_dat;
	NhlCompareDat	*save_compc_ymax_dat;

} NhlCurvilinearTransObjLayerPart;

typedef struct _NhlCurvilinearTransObjLayerRec {
	NhlObjLayerPart			base;
	NhlTransObjLayerPart		trobj;
	NhlCurvilinearTransObjLayerPart	crtrans;
} NhlCurvilinearTransObjLayerRec;

typedef struct _NhlCurvilinearTransObjClassPart {
	char *foo;
}NhlCurvilinearTransObjClassPart;

typedef struct _NhlCurvilinearTransObjClassRec {
	NhlObjClassPart			base_class;
	NhlTransObjClassPart		trobj_class;
	NhlCurvilinearTransObjClassPart	crtrans_class;
}NhlCurvilinearTransObjClassRec;

typedef struct _NhlCurvilinearTransObjClassRec	*NhlCurvilinearTransObjClass;
typedef struct _NhlCurvilinearTransObjLayerRec	*NhlCurvilinearTransObjLayer;

extern NhlCurvilinearTransObjClassRec		NhlcurvilinearTransObjClassRec;

#endif /* _NCurvilinearTransObjP_h */