VTK
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=========================================================================*/
28#ifndef vtkMultiBlockFromTimeSeriesFilter_h
29#define vtkMultiBlockFromTimeSeriesFilter_h
30
31#include "vtkFiltersGeneralModule.h" // For export macro
33#include "vtkSmartPointer.h" // Smart pointer
34
35#include <vector> // Vector to hold timesteps
36
38
40{
41public:
43 void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
44
46
47protected:
50
51 int FillInputPortInformation(int, vtkInformation *) VTK_OVERRIDE;
52
53 int RequestInformation(vtkInformation *,
55 vtkInformationVector *) VTK_OVERRIDE;
56 int RequestUpdateExtent(vtkInformation *,
58 vtkInformationVector *) VTK_OVERRIDE;
59 int RequestData(vtkInformation *,
61 vtkInformationVector *) VTK_OVERRIDE;
62
63private:
65 void operator=(const vtkMultiBlockFromTimeSeriesFilter&) VTK_DELETE_FUNCTION;
66
67 int UpdateTimeIndex;
68 std::vector<double> TimeSteps;
70};
71
72#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
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.
collects multiple inputs into one multi-group dataset
static vtkMultiBlockFromTimeSeriesFilter * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Hold a reference to a vtkObjectBase instance.
@ vector
Definition: vtkX3D.h:237