/usr/include/ncarg/hlu/ScalarFieldFloatP.h is in libncarg-dev 6.1.2-7.
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 | /*
* $Id: ScalarFieldFloatP.h,v 1.10 2004-08-11 23:52:50 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1993 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: ScalarFieldFloatP.h
*
* Author: David I. Brown
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Wed Apr 6 17:53:29 MDT 1994
*
* Description: This file contains all the declarations for the
* ScalarFieldFloat object. This object is a private
* object to be used internally by DataComm sub-classes
* and by the ScalarField object so there is no
* public header file.
*/
#ifndef _NScalarFieldFloatP_h
#define _NScalarFieldFloatP_h
#include <ncarg/hlu/BaseP.h>
#include <ncarg/hlu/ScalarField.h>
typedef struct _NhlScalarFieldFloatClassRec
*NhlScalarFieldFloatClass;
typedef struct _NhlScalarFieldFloatLayerRec *NhlScalarFieldFloatLayer;
extern NhlClass NhlscalarFieldFloatClass;
#define _NhlsfDARR_CHANGED 1
#define _NhlsfXARR_CHANGED 2
#define _NhlsfYARR_CHANGED 4
typedef struct _NhlScalarFieldFloatLayerPart{
/* all fields are private and set directly by the converter */
NhlGenArray d_arr;
NhlGenArray x_arr;
NhlGenArray y_arr;
NhldiGridType grid_type;
NhlBoolean xc_is_bounds;
NhlBoolean xc_is_linear;
NhlBoolean yc_is_bounds;
NhlBoolean yc_is_linear;
NhlBoolean missing_value_set;
float missing_value;
float data_min;
float data_max;
float x_start;
float x_end;
float y_start;
float y_end;
int ix_start;
int ix_end;
int iy_start;
int iy_end;
int begin;
int fast_dim;
int fast_len;
int slow_len;
int changed;
NhlGenArray element_nodes;
NhlGenArray x_cell_bounds;
NhlGenArray y_cell_bounds;
} NhlScalarFieldFloatLayerPart;
typedef struct _NhlScalarFieldFloatLayerRec{
NhlObjLayerPart base;
NhlScalarFieldFloatLayerPart sfieldfloat;
} NhlScalarFieldFloatLayerRec;
typedef struct _NhlScalarFieldFloatClassPart{
int foo;
} NhlScalarFieldFloatClassPart;
typedef struct _NhlScalarFieldFloatClassRec{
NhlObjClassPart base_class;
NhlScalarFieldFloatClassPart sfieldfloat_class;
} NhlScalarFieldFloatClassRec;
extern NhlScalarFieldFloatClassRec NhlscalarFieldFloatClassRec;
#endif /* _NScalarFieldFloatP_h */
|