VTK  9.1.0
vtkVeraOutReader.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkVeraOutReader.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15// .NAME vtkVeraOutReader - File reader for VERA OUT HDF5 format.
16
17#ifndef vtkVeraOutReader_h
18#define vtkVeraOutReader_h
19
20#include "vtkIOVeraOutModule.h" // For VTKIOVERAOUT_EXPORT macro
21#include <vector> // For STL vector
22
23// vtkCommonExecutionModel
25
27
28class VTKIOVERAOUT_EXPORT vtkVeraOutReader : public vtkRectilinearGridAlgorithm
29{
30public:
33 void PrintSelf(ostream& os, vtkIndent indent) override;
34
37
46
51
52protected:
55
57
58 // Trigger the real data access
61
62 char* FileName;
64 std::vector<double> TimeSteps;
65
66private:
67 vtkVeraOutReader(const vtkVeraOutReader&) = delete;
68 void operator=(const vtkVeraOutReader&) = delete;
69
70 class Internals;
71 Internals* Internal;
72};
73
74#endif
Store on/off settings for data arrays for a vtkSource.
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only rectilinear grid as output.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetFilePathMacro(FileName)
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
static vtkVeraOutReader * New()
~vtkVeraOutReader() override
vtkDataArraySelection * GetFieldDataArraySelection() const
Get vtkDataArraySelection instance to select field arrays to read.
vtkGetFilePathMacro(FileName)
vtkDataArraySelection * GetCellDataArraySelection() const
Get vtkDataArraySelection instance to select cell arrays to read.
std::vector< double > TimeSteps
vtkMTimeType GetMTime() override
Override GetMTime because of array selector.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *outVector) override
This is called by the superclass.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287