/usr/include/vtk-6.3/vtkxdmf2/XdmfValuesHDF.h is in libvtk6-dev 6.3.0+dfsg1-5.
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 | /*******************************************************************/
/* XDMF */
/* eXtensible Data Model and ValuesHDF */
/* */
/* Id : Id */
/* Date : $Date$ */
/* Version : $Revision$ */
/* */
/* Author: */
/* Jerry A. Clarke */
/* clarke@arl.army.mil */
/* US Army Research Laboratory */
/* Aberdeen Proving Ground, MD */
/* */
/* Copyright @ 2002 US Army Research Laboratory */
/* All Rights Reserved */
/* See Copyright.txt or http://www.arl.hpc.mil/ice for details */
/* */
/* This software is distributed WITHOUT ANY WARRANTY; without */
/* even the implied warranty of MERCHANTABILITY or FITNESS */
/* FOR A PARTICULAR PURPOSE. See the above copyright notice */
/* for more information. */
/* */
/*******************************************************************/
#ifndef __XdmfValuesHDF_h
#define __XdmfValuesHDF_h
#include "XdmfValues.h"
namespace xdmf2
{
//! Parent Class for handeling I/O of actual data for an XdmfDataItem
/*!
An HDF XdmfDataItem Node Looks like :
\verbatim
<DataItem
Rank="2"
Dimensions="2 4"
Precision="4"
DataType="Float"
Format="HDF">
MyData.h5:/AllValuesHDF/ThisArray
</DataItem>
\endverbatim
XdmfValuesHDF is used to access the "MyData.h5:/AllValuesHDF/ThisArray" part wheather it's in the
HDF.
*/
class XDMF_EXPORT XdmfValuesHDF : public XdmfValues {
public :
XdmfValuesHDF();
virtual ~XdmfValuesHDF();
XdmfConstString GetClassName() { return("XdmfValuesHDF"); } ;
//! Read the Array from the External Representation
XdmfArray *Read(XdmfArray *Array=NULL);
//! Write the Array to the External Representation
XdmfInt32 Write(XdmfArray *Array, XdmfConstString HeavyDataSetName=NULL);
//! Produce Xml for an existing HDF5 Dataset
XdmfString DataItemFromHDF(XdmfConstString H5DataSet);
protected :
};
}
#endif
|