17#include "vtkFiltersOpenTURNSModule.h"  
   25VTK_ABI_NAMESPACE_BEGIN
 
   47  virtual int Process(OT::Sample* input) = 0;
 
   52  virtual void AddToOutput(OT::Sample* ns, 
const std::string& name);
 
a simple class to control print indentation
 
A generic VTK Filter to process vtkTable using openturns algorithm.
 
virtual void AddToOutput(OT::Sample *ns, const std::string &name)
Method to add a openturns data to a table as a named column.
 
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
 
int FillInputPortInformation(int port, vtkInformation *info) override
Set the input of this filter, a vtkTable.
 
virtual int Process(OT::Sample *input)=0
Abstract method to process openturns data.
 
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
 
Superclass for algorithms that produce only vtkTables as output.
 
A table, which contains similar-typed columns of data.
 
Set of utilities for OpenTURNS<->VTK conversions.