/usr/include/paraview/vtkPEnSightGoldReader.h is in paraview-dev 5.0.1+dfsg1-4.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkPEnSightGoldReader.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 vtkPEnSightGoldReader
// .SECTION Description
// Parallel version of vtkEnSightGoldReader.
// .SECTION Thanks
// <verbatim>
//
// This file has been developed as part of the CARRIOCAS (Distributed
// computation over ultra high optical internet network ) project (
// http://www.carriocas.org/index.php?lng=ang ) of the SYSTEM@TIC French ICT
// Cluster (http://www.systematic-paris-region.org/en/index.html) under the
// supervision of CEA (http://www.cea.fr) and EDF (http://www.edf.fr) by
// Oxalya (http://www.oxalya.com)
//
// Copyright (c) CEA
//
// </verbatim>
#ifndef vtkPEnSightGoldReader_h
#define vtkPEnSightGoldReader_h
#include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
#include "vtkPEnSightReader.h"
//BTX
class UndefPartialInternal;
//ETX
class vtkMultiBlockDataSet;
class vtkPoints;
class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkPEnSightGoldReader : public vtkPEnSightReader
{
public:
static vtkPEnSightGoldReader *New();
vtkTypeMacro(vtkPEnSightGoldReader, vtkPEnSightReader);
virtual void PrintSelf(ostream& os, vtkIndent indent);
protected:
vtkPEnSightGoldReader();
~vtkPEnSightGoldReader();
// Description:
// Read the geometry file. If an error occurred, 0 is returned; otherwise 1.
virtual int ReadGeometryFile(const char* fileName, int timeStep,
vtkMultiBlockDataSet *output);
// 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);
// Description:
// Read scalars per node for this dataset. If an error occurred, 0 is
// returned; otherwise 1. If there will be more than one component in
// the data array, it is assumed that 0 is the first component added.
virtual int ReadScalarsPerNode(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output,
int measured = 0,
int numberOfComponents = 1,
int component = 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);
// 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);
// Description:
// Read scalars per element for this dataset. If an error occurred, 0 is
// returned; otherwise 1. If there will be more than one componenet in the
// data array, it is assumed that 0 is the first component added.
virtual int ReadScalarsPerElement(const char* fileName, const char* description,
int timeStep, vtkMultiBlockDataSet *output,
int numberOfComponents = 1,
int component = 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);
// 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);
// Description:
// Read an unstructured part (partId) from the geometry file and create a
// vtkUnstructuredGrid output. Return 0 if EOF reached. Return -1 if
// an error occurred.
virtual int CreateUnstructuredGridOutput(int partId,
char line[256],
const char* name,
vtkMultiBlockDataSet *output);
// Description:
// Read a structured part from the geometry file and create a
// vtkStructuredGrid output. Return 0 if EOF reached.
virtual int CreateStructuredGridOutput(int partId,
char line[256],
const char* name,
vtkMultiBlockDataSet *output);
// Description:
// Read a structured part from the geometry file and create a
// vtkRectilinearGrid output. Return 0 if EOF reached.
int CreateRectilinearGridOutput(int partId, char line[256], const char* name,
vtkMultiBlockDataSet *output);
// Description:
// Read a structured part from the geometry file and create a
// vtkImageData output. Return 0 if EOF reached.
int CreateImageDataOutput(int partId, char line[256], const char* name,
vtkMultiBlockDataSet *output);
// Description:
// Read Coordinates, or just skip the part in the file.
int ReadOrSkipCoordinates(vtkPoints* points, long offset, int partId, int* lineRead, char* line, bool skip);
// Description:
// Internal method to inject Coordinates and Global Ids at the end
// of a part read for Unstructured data.
int InjectCoordinatesAtEnd(vtkUnstructuredGrid* output, long coordinatesOffset, int partId );
// Description:
// Set/Get the Model file name.
vtkSetStringMacro(GeometryFileName);
vtkGetStringMacro(GeometryFileName);
// Description:
// Set/Get the Measured file name.
vtkSetStringMacro(MeasuredFileName);
vtkGetStringMacro(MeasuredFileName);
// Description:
// Set/Get the Match file name.
vtkSetStringMacro(MatchFileName);
vtkGetStringMacro(MatchFileName);
// Description:
// Skip next line in file if the 'undef' or 'partial' keyword was
// specified after a sectional keyword
int CheckForUndefOrPartial(const char *line);
// Description:
// Handle the undef / partial support for EnSight gold
UndefPartialInternal* UndefPartial;
int NodeIdsListed;
int ElementIdsListed;
private:
vtkPEnSightGoldReader(const vtkPEnSightGoldReader&); // Not implemented.
void operator=(const vtkPEnSightGoldReader&); // Not implemented.
};
#endif
|