/usr/include/vtk-6.3/vtkEnSightReader.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 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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkEnSightReader.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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.
=========================================================================*/
// .NAME vtkEnSightReader - superclass for EnSight file readers
#ifndef vtkEnSightReader_h
#define vtkEnSightReader_h
#include "vtkIOEnSightModule.h" // For export macro
#include "vtkGenericEnSightReader.h"
class vtkDataSet;
class vtkDataSetCollection;
class vtkEnSightReaderCellIdsType;
class vtkIdList;
class vtkMultiBlockDataSet;
class VTKIOENSIGHT_EXPORT vtkEnSightReader : public vtkGenericEnSightReader
{
public:
vtkTypeMacro(vtkEnSightReader, vtkGenericEnSightReader);
void PrintSelf(ostream& os, vtkIndent indent);
//BTX
enum ElementTypesList
{
POINT = 0,
BAR2 = 1,
BAR3 = 2,
NSIDED = 3,
TRIA3 = 4,
TRIA6 = 5,
QUAD4 = 6,
QUAD8 = 7,
NFACED = 8,
TETRA4 = 9,
TETRA10 = 10,
PYRAMID5 = 11,
PYRAMID13 = 12,
HEXA8 = 13,
HEXA20 = 14,
PENTA6 = 15,
PENTA15 = 16,
NUMBER_OF_ELEMENT_TYPES = 17
};
enum VariableTypesList
{
SCALAR_PER_NODE = 0,
VECTOR_PER_NODE = 1,
TENSOR_SYMM_PER_NODE = 2,
SCALAR_PER_ELEMENT = 3,
VECTOR_PER_ELEMENT = 4,
TENSOR_SYMM_PER_ELEMENT = 5,
SCALAR_PER_MEASURED_NODE = 6,
VECTOR_PER_MEASURED_NODE = 7,
COMPLEX_SCALAR_PER_NODE = 8,
COMPLEX_VECTOR_PER_NODE = 9,
COMPLEX_SCALAR_PER_ELEMENT = 10,
COMPLEX_VECTOR_PER_ELEMENT = 11
};
enum SectionTypeList
{
COORDINATES = 0,
BLOCK = 1,
ELEMENT = 2
};
//ETX
// Description:
// Get the Measured file name. Made public to allow access from
// apps requiring detailed info about the Data contents
vtkGetStringMacro(MeasuredFileName);
// Description:
// Get the Match file name. Made public to allow access from
// apps requiring detailed info about the Data contents
vtkGetStringMacro(MatchFileName);
// Description:
// The MeasuredGeometryFile should list particle coordinates
// from 0->N-1.
// If a file is loaded where point Ids are listed from 1-N
// the Id to points reference will be wrong and the data
// will be generated incorrectly.
// Setting ParticleCoordinatesByIndex to true will force
// all Id's to increment from 0->N-1 (relative to their order
// in the file) and regardless of the actual Id of of the point.
// Warning, if the Points are listed in non sequential order
// then setting this flag will reorder them.
vtkSetMacro(ParticleCoordinatesByIndex, int);
vtkGetMacro(ParticleCoordinatesByIndex, int);
vtkBooleanMacro(ParticleCoordinatesByIndex, int);
protected:
vtkEnSightReader();
~vtkEnSightReader();
virtual int RequestInformation(vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
virtual int RequestData(vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
virtual void ClearForNewCaseFileName();
// Description:
// Set the Measured file name.
vtkSetStringMacro(MeasuredFileName);
// Description:
// Set the Match file name.
vtkSetStringMacro(MatchFileName);
// Description:
// Read the case file. If an error occurred, 0 is returned; otherwise 1.
int ReadCaseFile();
int ReadCaseFileGeometry(char* line);
int ReadCaseFileVariable(char* line);
int ReadCaseFileTime(char* line);
int ReadCaseFileFile(char* line);
// set in UpdateInformation to value returned from ReadCaseFile
int CaseFileRead;
// Description:
// Read the geometry file. If an error occurred, 0 is returned; otherwise 1.
virtual int ReadGeometryFile(const char* fileName, int timeStep,
vtkMultiBlockDataSet *output) = 0;
// Description:
// Read the measured geometry file. If an error occurred, 0 is returned;
// otherwise 1.
virtual int ReadMeasuredGeometryFile(const char* fileName, int timeStep,
vtkMultiBlockDataSet *output) = 0;
// Description:
// Read the variable files. If an error occurred, 0 is returned; otherwise 1.
int ReadVariableFiles(vtkMultiBlockDataSet *output);
// Description:
// Read scalars per node for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadScalarsPerNode(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output,
int measured = 0, int numberOfComponents = 1,
int component = 0) = 0;
// Description:
// Read vectors per node for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadVectorsPerNode(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output,
int measured = 0) = 0;
// Description:
// Read tensors per node for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadTensorsPerNode(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output) = 0;
// Description:
// Read scalars per element for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadScalarsPerElement(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output,
int numberOfComponents = 1,
int component = 0) = 0;
// Description:
// Read vectors per element for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadVectorsPerElement(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output) = 0;
// Description:
// Read tensors per element for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadTensorsPerElement(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output) = 0;
// Description:
// Read an unstructured part (partId) from the geometry file and create a
// vtkUnstructuredGrid output. Return 0 if EOF reached.
virtual int CreateUnstructuredGridOutput(int partId,
char line[80],
const char* name,
vtkMultiBlockDataSet *output) = 0;
// Description:
// Read a structured part from the geometry file and create a
// vtkStructuredGridOutput. Return 0 if EOF reached.
virtual int CreateStructuredGridOutput(int partId,
char line[80],
const char* name,
vtkMultiBlockDataSet *output) = 0;
// Description:
// Add another file name to the list for a particular variable type.
void AddVariableFileName(const char* fileName1, const char* fileName2 = NULL);
// Description:
// Add another description to the list for a particular variable type.
void AddVariableDescription(const char* description);
// Description:
// Record the variable type for the variable line just read.
void AddVariableType();
// Description:
// Determine the element type from a line read a file. Return -1 for
// invalid element type.
int GetElementType(const char* line);
// Description:
// Determine the section type from a line read a file. Return -1 for
// invalid section type.
int GetSectionType(const char *line);
// Description:
// Replace the *'s in the filename with the given filename number.
void ReplaceWildcards(char* filename, int num);
// Description:
// Remove leading blank spaces from a string.
void RemoveLeadingBlanks(char *line);
// Get the vtkIdList for the given output index and cell type.
vtkIdList* GetCellIds(int index, int cellType);
// Description:
// Convenience method use to convert the readers from VTK 5 multiblock API
// to the current composite data infrastructure.
void AddToBlock(vtkMultiBlockDataSet* output,
unsigned int blockNo,
vtkDataSet* dataset);
// Description:
// Convenience method use to convert the readers from VTK 5 multiblock API
// to the current composite data infrastructure.
vtkDataSet* GetDataSetFromBlock(vtkMultiBlockDataSet* output,
unsigned int blockNo);
// Description:
// Set the name of a block.
void SetBlockName(vtkMultiBlockDataSet* output, unsigned int blockNo,
const char* name);
char* MeasuredFileName;
char* MatchFileName; // may not actually be necessary to read this file
// pointer to lists of vtkIdLists (cell ids per element type per part)
vtkEnSightReaderCellIdsType* CellIds;
// part ids of unstructured outputs
vtkIdList* UnstructuredPartIds;
int VariableMode;
// pointers to lists of filenames
char** VariableFileNames; // non-complex
char** ComplexVariableFileNames;
// array of time sets
vtkIdList *VariableTimeSetIds;
vtkIdList *ComplexVariableTimeSetIds;
// array of file sets
vtkIdList *VariableFileSetIds;
vtkIdList *ComplexVariableFileSetIds;
// collection of filename numbers per time set
vtkIdListCollection *TimeSetFileNameNumbers;
vtkIdList *TimeSetsWithFilenameNumbers;
// collection of filename numbers per file set
vtkIdListCollection *FileSetFileNameNumbers;
vtkIdList *FileSetsWithFilenameNumbers;
// collection of number of steps per file per file set
vtkIdListCollection *FileSetNumberOfSteps;
// ids of the time and file sets
vtkIdList *TimeSetIds;
vtkIdList *FileSets;
int GeometryTimeSet;
int GeometryFileSet;
int MeasuredTimeSet;
int MeasuredFileSet;
float GeometryTimeValue;
float MeasuredTimeValue;
int UseTimeSets;
vtkSetMacro(UseTimeSets, int);
vtkGetMacro(UseTimeSets, int);
vtkBooleanMacro(UseTimeSets, int);
int UseFileSets;
vtkSetMacro(UseFileSets, int);
vtkGetMacro(UseFileSets, int);
vtkBooleanMacro(UseFileSets, int);
int NumberOfGeometryParts;
// global list of points for measured geometry
int NumberOfMeasuredPoints;
int NumberOfNewOutputs;
int InitialRead;
int CheckOutputConsistency();
int ParticleCoordinatesByIndex;
double ActualTimeValue;
private:
vtkEnSightReader(const vtkEnSightReader&); // Not implemented.
void operator=(const vtkEnSightReader&); // Not implemented.
};
#endif
|