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 =========================================================================*/
25 #ifndef vtkMultiBlockFromTimeSeriesFilter_h
26 #define vtkMultiBlockFromTimeSeriesFilter_h
27 
28 #include "vtkFiltersGeneralModule.h" // For export macro
30 #include "vtkSmartPointer.h" // Smart pointer
31 
32 #include <vector> // Vector to hold timesteps
33 
35 
37 {
38 public:
40  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
41 
43 
44 protected:
46  ~vtkMultiBlockFromTimeSeriesFilter() VTK_OVERRIDE;
47 
48  int FillInputPortInformation(int, vtkInformation *) VTK_OVERRIDE;
49 
50  int RequestInformation(vtkInformation *,
52  vtkInformationVector *) VTK_OVERRIDE;
53  int RequestUpdateExtent(vtkInformation *,
54  vtkInformationVector **,
55  vtkInformationVector *) VTK_OVERRIDE;
56  int RequestData(vtkInformation *,
57  vtkInformationVector **,
58  vtkInformationVector *) VTK_OVERRIDE;
59 
60 private:
62  void operator=(const vtkMultiBlockFromTimeSeriesFilter&) VTK_DELETE_FUNCTION;
63 
64  int UpdateTimeIndex;
65  std::vector<double> TimeSteps;
67 };
68 
69 #endif
Store vtkAlgorithm input/output information.
Hold a reference to a vtkObjectBase instance.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
collects multiple inputs into one multi-group dataset
static vtkMultiBlockDataSetAlgorithm * New()
a simple class to control print indentation
Definition: vtkIndent.h:33
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Composite dataset that organizes datasets into blocks.
Store zero or more vtkInformation instances.