VTK  9.0.1
vtkExtractExodusGlobalTemporalVariables.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractExodusGlobalTemporalVariables.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 =========================================================================*/
36 #ifndef vtkExtractExodusGlobalTemporalVariables_h
37 #define vtkExtractExodusGlobalTemporalVariables_h
38 
39 #include "vtkFiltersExtractionModule.h" // For export macro
40 #include "vtkTableAlgorithm.h"
41 
42 #include <memory> // for std::unique_ptr
43 
44 class VTKFILTERSEXTRACTION_EXPORT vtkExtractExodusGlobalTemporalVariables : public vtkTableAlgorithm
45 {
46 public:
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
51 protected:
54 
56  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
57  vtkInformationVector* outputVector) override;
58  int RequestUpdateExtent(vtkInformation* request, vtkInformationVector** inputVector,
59  vtkInformationVector* outputVector) override;
60  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
61  vtkInformationVector* outputVector) override;
62 
64 
68  void GetContinuationState(bool& continue_executing_flag, size_t& offset) const;
69  void SetContinuationState(bool continue_executing_flag, size_t offset);
71 
72 private:
74  void operator=(const vtkExtractExodusGlobalTemporalVariables&) = delete;
75 
76  class vtkInternals;
77  std::unique_ptr<vtkInternals> Internals;
78 };
79 
80 #endif
vtkTableAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTableAlgorithm::RequestInformation
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkTableAlgorithm::RequestUpdateExtent
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkExtractExodusGlobalTemporalVariables
extract global temporal arrays generated by vtkExodusIIReader
Definition: vtkExtractExodusGlobalTemporalVariables.h:44
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkX3D::port
@ port
Definition: vtkX3D.h:453
vtkX3D::offset
@ offset
Definition: vtkX3D.h:444
vtkTableAlgorithm
Superclass for algorithms that produce only vtkTables as output.
Definition: vtkTableAlgorithm.h:48
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkTableAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkX3D::info
@ info
Definition: vtkX3D.h:382
vtkTableAlgorithm.h
vtkTableAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkTableAlgorithm::New
static vtkTableAlgorithm * New()