/usr/include/paraview/vtkSpyPlotReader.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 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 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkSpyPlotReader.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 vtkSpyPlotReader - Read SPCTH Spy Plot file format
// .SECTION Description
// vtkSpyPlotReader is a reader that reads SPCTH Spy Plot file format
// through an ascii meta file called the "case" file (extension .spcth). This
// case file lists all the actual binary files that describe a dataset. Each
// binary file describes a part of the dataset. However, if only a single
// binary file describes the whole dataset, it is possible to load it directly
// without using a case file.
//
// The reader supports both Spy dataset types: flat mesh and AMR
// (Adaptive Mesh Refinement).
//
// It has parallel capabilities. Each processor is supposed to have access
// to the case file and to all the binary files. All the binary files
// have to be coherent: they describe the same fields of data.
// Each binary file may content multiple time stamp. The time stamp to read is
// specified with SetTimestamp().
//
// In parallel mode, there are two ways to distribute data over processors
// (controlled by SetDistributeFiles() ):
// - either by distributing blocks: all processors read all the files, but
// only some number of blocks per files. Hence, load balancing is good even if
// there is only one file.
// - or by distributing files: a file is read entirely by one processor. If
// there is only one file, all the other processors are not used at all.
//
// .SECTION Implementation Details
// - All processors read the first binary file listed in the case file to get
// informations about the fields.
// - Each block of data is already surrounded by ghost cells in the file,
// even on part of the block that don't have actual neighbor cells. The
// reader removes those wrong ghost cells.
// - Each time step contains all the cell array name variables
#ifndef vtkSpyPlotReader_h
#define vtkSpyPlotReader_h
#include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
#include "vtkCompositeDataSetAlgorithm.h"
class vtkBoundingBox;
class vtkCallbackCommand;
class vtkCellData;
class vtkDataArray;
class vtkDataArraySelection;
class vtkDataSetAttributes;
//class vtkHierarchicalBoxDataSet;
class vtkNonOverlappingAMR;
class vtkMultiBlockDataSet;
class vtkMultiProcessController;
class vtkRectilinearGrid;
class vtkSpyPlotBlock;
class vtkSpyPlotBlockIterator;
class vtkSpyPlotReaderMap;
class vtkSpyPlotUniReader;
class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkSpyPlotReader : public vtkCompositeDataSetAlgorithm
{
public:
static vtkSpyPlotReader* New();
vtkTypeMacro(vtkSpyPlotReader,vtkCompositeDataSetAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
void PrintBlockList(vtkNonOverlappingAMR *hbds, int myProcId);
// Description:
// Get and set the file name. It is either the name of the case file or the
// name of the single binary file.
virtual void SetFileName(const char* filename);
vtkGetStringMacro(FileName);
// Description:
// Set and get the time step. The time step is an index, NOT a time
// given in seconds.
vtkSetMacro(TimeStep, int);
vtkGetMacro(TimeStep, int);
// Description:
// If true, the reader distributes files over processors. If false,
// the reader distributes blocks over processors. Default is false.
// Distributing blocks should provide a better load balancing:
// if there is only one file and several processors, only the first
// processor is used in the case of the file-distributed method.
vtkSetMacro(DistributeFiles,int);
vtkGetMacro(DistributeFiles,int);
vtkBooleanMacro(DistributeFiles,int);
// Description:
// If true, the reader generate a cell array in each block that
// stores the level in the hierarchy, starting from 0.
// False by default.
vtkSetMacro(GenerateLevelArray,int);
vtkGetMacro(GenerateLevelArray,int);
vtkBooleanMacro(GenerateLevelArray,int);
// Description:
// If true, the reader generate a cell array in each block that
// stores a unique but not necessarily contiguous id.
// False by default.
vtkSetMacro(GenerateBlockIdArray,int);
vtkGetMacro(GenerateBlockIdArray,int);
vtkBooleanMacro(GenerateBlockIdArray,int);
// Description:
// If true, the reader generate a cell array in each block that
// corresponds to the Active field in the file.
// False by default.
vtkSetMacro(GenerateActiveBlockArray,int);
vtkGetMacro(GenerateActiveBlockArray,int);
vtkBooleanMacro(GenerateActiveBlockArray,int);
// Description:
// If true, the reader will extract tracer data at each time
// step and include a field data array for the tracers at that
// time.
vtkSetMacro(GenerateTracerArray,int);
vtkGetMacro(GenerateTracerArray,int);
vtkBooleanMacro(GenerateTracerArray,int);
// Description:
// if true, the reader will extract the marker data at each
// time step and create a set of vtkPoints in the second
// output port.
void SetGenerateMarkers (int gm);
vtkGetMacro(GenerateMarkers,int);
vtkBooleanMacro(GenerateMarkers,int);
// Description:
// If true, the reader will convert volume fraction arrays to unsigned char.
// True by default.
void SetDownConvertVolumeFraction(int vf);
vtkGetMacro(DownConvertVolumeFraction,int);
vtkBooleanMacro(DownConvertVolumeFraction,int);
// Description:
// If true, the reader will calculate all derived variables it can given
// which properties the user has selected
// True by default.
vtkSetMacro(ComputeDerivedVariables, int);
vtkGetMacro(ComputeDerivedVariables,int);
vtkBooleanMacro(ComputeDerivedVariables,int);
// Description:
// If true, the reader will merge scalar arrays named, for example, "X velocity"
// "Y velocity" and "Z velocity" into a vector array named "velocity" with
// scalar components X, Y and Z. It will also merge X and Y scalar arrays
// (with no Z component) into a vector with scalar components X, Y and 0.
// True by default.
void SetMergeXYZComponents(int merge);
vtkGetMacro(MergeXYZComponents,int);
vtkBooleanMacro(MergeXYZComponents,int);
// Description:
// Get the time step range.
vtkGetVector2Macro(TimeStepRange, int);
// Description:
// Cell array selection
int GetNumberOfCellArrays();
const char* GetCellArrayName(int idx);
int GetCellArrayStatus(const char *name);
void SetCellArrayStatus(const char *name, int status);
// Description:
// Set the controller used to coordinate parallel reading.
// The "global controller" has all processes while the
// "controller" has only those who have blocks.
void SetGlobalController(vtkMultiProcessController* controller);
// Description:
// Determine if the file can be readed with this reader.
virtual int CanReadFile(const char* fname);
protected:
vtkSpyPlotReader();
~vtkSpyPlotReader();
// Determine the bounds of just this reader
void GetLocalBounds(vtkSpyPlotBlockIterator *biter,
int nBlocks, int progressInterval);
// Set the global bounds of all readers
void SetGlobalBounds(vtkSpyPlotBlockIterator *biter,
int total_num_of_block,
int progressInterval,
int *rightHasBounds,
int *leftHasBounds);
// Determine the box size on just this reader
// returns true if box size is a constant on this reader
// false if not.
bool GetLocalBoxSize(vtkSpyPlotBlockIterator *biter,
int *localBoxSize) const;
// Determine box size if it is a constant across the data set
// If not then this is set to -1,-1,-1.
void SetGlobalBoxSize(vtkSpyPlotBlockIterator *biter);
// Determine the minimum level that is used on just this level
// and get the spacing there
void GetLocalMinLevelAndSpacing(vtkSpyPlotBlockIterator *biter,
int *localMinLevel,
double spacing[3]) const;
// Set the minimum level that is used
// and get the spacing there
void SetGlobalMinLevelAndSpacing(vtkSpyPlotBlockIterator *biter);
// Set things up to process an AMR Block
int PrepareAMRData(vtkNonOverlappingAMR *hb,
vtkSpyPlotBlock *block,
int *level,
int *blockId,
int extents[6],
int realExtents[6],
int realDims[3],
vtkCellData **cd);
// Set things up to process a non-AMR Block
int PrepareData(vtkMultiBlockDataSet* hb,
vtkSpyPlotBlock *block,
vtkRectilinearGrid **rg,
int extents[6],
int realExtents[6],
int realDims[3],
vtkCellData **cd);
// Update the field data (interms of ghost cells) that
// contain whose block did not contain any bad ghost cells
void UpdateFieldData(int numFields, int dims[3],
int level, int blockID,
vtkSpyPlotUniReader *uniReader,
vtkCellData *cd);
// Update the field data (interms of ghost cells) that
// contain whose block did contain bad ghost cells
void UpdateBadGhostFieldData(int numFields, int dims[3],
int realDims[3],
int realExtents[6],
int level, int blockID,
vtkSpyPlotUniReader *uniReader,
vtkCellData *cd);
// Sets up the blocks for the markers data
void PrepareBlocks(vtkMultiBlockDataSet* poly,
int numMat);
// Sets up the markers data on the second output port
int PrepareMarkers(vtkMultiBlockDataSet* poly,
vtkSpyPlotUniReader* reader);
// The array selections.
vtkDataArraySelection *CellDataArraySelection;
virtual int FillOutputPortInformation(int port, vtkInformation *info);
// Create either vtkNonOverlappingAMR or vtkMultiBlockDataSet based on
// whether the dataset is AMR.
virtual int RequestDataObject(vtkInformation *req,
vtkInformationVector **inV,
vtkInformationVector *outV);
// Read the case file and the first binary file do get meta
// informations (number of files, number of fields, number of timestep).
virtual int RequestInformation(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
// Read the data: get the number of pieces (=processors) and get
// my piece id (=my processor id).
virtual int RequestData(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
// Description:
// This does the updating of meta data of the dataset from the
// first binary file registered in the map:
// - number of time steps
// - number of fields
// - name of fields
int UpdateMetaData(vtkInformation* request,
vtkInformationVector* outputVector);
int UpdateFile(vtkInformation *request,
vtkInformationVector *outputVector);
void AddGhostLevelArray(int numLevels);
int AddBlockIdArray(vtkCompositeDataSet *cds);
int AddAttributes(vtkNonOverlappingAMR *hbds);
int AddActiveBlockArray(vtkCellData *cd,vtkIdType nCells,unsigned char status);
// Have all the readers have the same global level structure
void SetGlobalLevels(vtkCompositeDataSet *cds);
// The observer to modify this object when the array selections are
// modified.
char *FileName;
int TimeStep; // set by the user
int TimeStepRange[2];
int CurrentTimeStep; // computed
int IsAMR; // AMR (hierarchy of uniform grids)
// or flat mesh (set of rectilinear grids)?
// access to all processes
vtkMultiProcessController *GlobalController;
// Description:
// Set the current time step.
int UpdateTimeStep(vtkInformation *requestInfo,
vtkInformationVector *outputInfo,
vtkCompositeDataSet *hb);
// The file format stores a vector field as separated scalar component
// fields. This method rebuilds the vector field from those scalar
// component fields.
void MergeVectors(vtkDataSetAttributes *da);
int MergeVectors(vtkDataSetAttributes *da,
vtkDataArray *a1,
vtkDataArray *a2);
int MergeVectors(vtkDataSetAttributes *da,
vtkDataArray *a1,
vtkDataArray *a2,
vtkDataArray *a3);
int ComputeDerivedVariables;
int ComputeDerivedVars(vtkCellData* data,
vtkSpyPlotBlock *block, vtkSpyPlotUniReader *reader, const int& blockID);
// Description:
// Get the data array selection tables used to configure which data
// arrays are loaded by the reader.
vtkGetObjectMacro(CellDataArraySelection, vtkDataArraySelection);
// vtkSpyPlotReaderMap needs access to GetCellDataArraySelection().
friend class vtkSpyPlotReaderMap;
vtkSpyPlotReaderMap *Map;
int DistributeFiles;
vtkBoundingBox *Bounds; //bounds of the hierarchy without the bad ghostcells.
int BoxSize[3]; // size of boxes if they are all the same, else -1,-1,-1
int MinLevel; // first used level
double MinLevelSpacing[3]; // grid spacing on first used level
int GenerateLevelArray; // user flag
int GenerateBlockIdArray; // user flag
int GenerateActiveBlockArray; // user flag
int GenerateTracerArray; // user flag
int GenerateMarkers; // user flag
int DownConvertVolumeFraction;
bool TimeRequestedFromPipeline;
int MergeXYZComponents;
// This flag is used to determine if core meta-data needs to be re-read.
bool FileNameChanged;
private:
vtkSpyPlotReader(const vtkSpyPlotReader&); // Not implemented.
void operator=(const vtkSpyPlotReader&); // Not implemented.
class VectorOfDoubles;
VectorOfDoubles* TimeSteps;
void SetTimeStepsInternal(const VectorOfDoubles&);
};
#endif
|