VTK  9.1.0
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=========================================================================*/
23#ifndef vtkMultiBlockFromTimeSeriesFilter_h
24#define vtkMultiBlockFromTimeSeriesFilter_h
25
26#include "vtkFiltersGeneralModule.h" // For export macro
28#include "vtkSmartPointer.h" // Smart pointer
29
30#include <vector> // Vector to hold timesteps
31
33
35 "Use vtkGroupTimeStepsFilter instead") VTKFILTERSGENERAL_EXPORT vtkMultiBlockFromTimeSeriesFilter
37{
38public:
40 void PrintSelf(ostream& os, vtkIndent indent) override;
41
43
44protected:
47
52
53private:
55 void operator=(const vtkMultiBlockFromTimeSeriesFilter&) = delete;
56
57 int UpdateTimeIndex;
58 std::vector<double> TimeSteps;
60};
61
62#endif
63
64// VTK-HeaderTest-Exclude: vtkMultiBlockFromTimeSeriesFilter.h
converts a temporal dataset into non-temporal dataset.
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 vtkMultiBlockDataSet as output.
Composite dataset that organizes datasets into blocks.
converts a temporal dataset into multiblock.
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkMultiBlockFromTimeSeriesFilter * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
#define VTK_DEPRECATED_IN_9_1_0(reason)