You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.1 KiB
C
98 lines
3.1 KiB
C
|
3 weeks ago
|
// -*- c++ -*-
|
||
|
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkTemporalStatistics.h
|
||
|
|
|
||
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
|
All rights reserved.
|
||
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
|
||
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @class vtkStreamerBase
|
||
|
|
* @brief Superclass for filters that stream input pipeline
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* This class can be used as a superclass for filters that want to
|
||
|
|
* stream their input pipeline by making multiple execution passes.
|
||
|
|
* The subclass needs to set NumberOfPasses to > 1 before execution (
|
||
|
|
* usuall in the constructor or in RequestInformation) to initiate
|
||
|
|
* streaming. vtkStreamerBase will handle streaming while calling
|
||
|
|
* ExecutePass() during each pass. CurrentIndex can be used to obtain
|
||
|
|
* the index for the current pass. Finally, PostExecute() is called
|
||
|
|
* after the last pass and can be used to cleanup any internal data
|
||
|
|
* structures and create the actual output.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkStreamerBase_h
|
||
|
|
#define vtkStreamerBase_h
|
||
|
|
|
||
|
|
#include "vtkFiltersCoreModule.h" // For export macro
|
||
|
|
#include "vtkAlgorithm.h"
|
||
|
|
|
||
|
|
class VTKFILTERSCORE_EXPORT vtkStreamerBase : public vtkAlgorithm
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
vtkTypeMacro(vtkStreamerBase, vtkAlgorithm);
|
||
|
|
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* see vtkAlgorithm for details
|
||
|
|
*/
|
||
|
|
int ProcessRequest(vtkInformation*,
|
||
|
|
vtkInformationVector**,
|
||
|
|
vtkInformationVector*) VTK_OVERRIDE;
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkStreamerBase();
|
||
|
|
~vtkStreamerBase() VTK_OVERRIDE;
|
||
|
|
|
||
|
|
virtual int RequestInformation(vtkInformation*,
|
||
|
|
vtkInformationVector**,
|
||
|
|
vtkInformationVector*)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is called by the superclass.
|
||
|
|
* This is the method you should override.
|
||
|
|
*/
|
||
|
|
virtual int RequestUpdateExtent(vtkInformation*,
|
||
|
|
vtkInformationVector**,
|
||
|
|
vtkInformationVector*) = 0;
|
||
|
|
|
||
|
|
virtual int RequestData(vtkInformation *request,
|
||
|
|
vtkInformationVector **inputVector,
|
||
|
|
vtkInformationVector *outputVector);
|
||
|
|
|
||
|
|
// This method is called during each execution pass. Subclasses
|
||
|
|
// should implement this to do actual work.
|
||
|
|
virtual int ExecutePass(vtkInformationVector **inputVector,
|
||
|
|
vtkInformationVector *outputVector) = 0;
|
||
|
|
|
||
|
|
// This method is called after streaming is completed. Subclasses
|
||
|
|
// can override this method to perform cleanup.
|
||
|
|
virtual int PostExecute(vtkInformationVector **,
|
||
|
|
vtkInformationVector *)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
unsigned int NumberOfPasses;
|
||
|
|
unsigned int CurrentIndex;
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkStreamerBase(const vtkStreamerBase &) VTK_DELETE_FUNCTION;
|
||
|
|
void operator=(const vtkStreamerBase &) VTK_DELETE_FUNCTION;
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //_vtkStreamerBase_h
|