VTK  9.4.20250509
vtkVeraOutReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
3// .NAME vtkVeraOutReader - File reader for VERA OUT HDF5 format.
4
5#ifndef vtkVeraOutReader_h
6#define vtkVeraOutReader_h
7
8#include "vtkIOVeraOutModule.h" // For VTKIOVERAOUT_EXPORT macro
9#include <vector> // For STL vector
10
11// vtkCommonExecutionModel
13
14VTK_ABI_NAMESPACE_BEGIN
16
17class VTKIOVERAOUT_EXPORT vtkVeraOutReader : public vtkRectilinearGridAlgorithm
18{
19public:
22 void PrintSelf(ostream& os, vtkIndent indent) override;
23
26
35
40
41protected:
44
46
47 // Trigger the real data access
50
51 char* FileName;
53 std::vector<double> TimeSteps;
54
55private:
56 vtkVeraOutReader(const vtkVeraOutReader&) = delete;
57 void operator=(const vtkVeraOutReader&) = delete;
58
59 class Internals;
60 Internals* Internal;
61};
62
63VTK_ABI_NAMESPACE_END
64#endif
Store on/off settings for data arrays, etc.
a simple class to control print indentation
Definition vtkIndent.h:108
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