VTK
vtkExtractTimeSteps.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractTimeSteps.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 =========================================================================*/
29 #ifndef vtkExtractTimeSteps_h
30 #define vtkExtractTimeSteps_h
31 
32 #include "vtkFiltersExtractionModule.h" // for export macro
34 
35 #include <set> // for time step indices
36 
37 
38 class VTKFILTERSEXTRACTION_EXPORT vtkExtractTimeSteps : public vtkPassInputTypeAlgorithm
39 {
40 public:
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
44  static vtkExtractTimeSteps *New();
45 
50  {
51  return static_cast<int>(this->TimeStepIndices.size());
52  }
53 
57  void AddTimeStepIndex(int timeStepIndex);
58 
60 
64  void SetTimeStepIndices(int count, const int *timeStepIndices);
65  void GetTimeStepIndices(int *timeStepIndices) const;
67 
71  void GenerateTimeStepIndices(int begin, int end, int step);
72 
74 
78  {
79  this->TimeStepIndices.clear();
80  this->Modified();
81  }
83 
84 protected:
87 
92 
93  std::set<int> TimeStepIndices;
94 
95 private:
96  vtkExtractTimeSteps(const vtkExtractTimeSteps&) VTK_DELETE_FUNCTION;
97  void operator=(const vtkExtractTimeSteps&) VTK_DELETE_FUNCTION;
98 };
99 
100 #endif // vtkExtractTimeSteps_h
extract specific time-steps from dataset
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks for Information.
Superclass for algorithms that produce output of the same type as input.
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual void Modified()
Update the modification time for this object.
int GetNumberOfTimeSteps() const
Get the number of time steps that will be extracted.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ClearTimeStepIndices()
Clear the time step indices.
Store zero or more vtkInformation instances.
std::set< int > TimeStepIndices
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkPassInputTypeAlgorithm * New()