VTK  9.2.6
vtkMultiBlockFromTimeSeriesFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMultiBlockFromTimeSeriesFilter.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 =========================================================================*/
26 #ifndef vtkMultiBlockFromTimeSeriesFilter_h
27 #define vtkMultiBlockFromTimeSeriesFilter_h
28 
29 #include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_1_0
30 #include "vtkFiltersGeneralModule.h" // For export macro
32 #include "vtkSmartPointer.h" // Smart pointer
33 
34 #include <vector> // Vector to hold timesteps
35 
37 
39  "Use vtkGroupTimeStepsFilter instead") VTKFILTERSGENERAL_EXPORT vtkMultiBlockFromTimeSeriesFilter
41 {
42 public:
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
47 
48 protected:
51 
52  int FillInputPortInformation(int, vtkInformation*) override;
56 
57 private:
59  void operator=(const vtkMultiBlockFromTimeSeriesFilter&) = delete;
60 
61  int UpdateTimeIndex;
62  std::vector<double> TimeSteps;
64 };
65 
66 #endif
67 
68 // VTK-HeaderTest-Exclude: vtkMultiBlockFromTimeSeriesFilter.h
#define VTK_DEPRECATED_IN_9_1_0(reason)
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
converts a temporal dataset into multiblock.
static vtkMultiBlockDataSetAlgorithm * New()
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
converts a temporal dataset into non-temporal dataset.
Composite dataset that organizes datasets into blocks.
Store zero or more vtkInformation instances.
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.