#include <vtkUnivariateStatisticsAlgorithm.h>
Definition at line 50 of file vtkUnivariateStatisticsAlgorithm.h.
Public Types | |
typedef vtkStatisticsAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | AddColumn (const char *namCol) |
virtual int | RequestSelectedColumns () |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkUnivariateStatisticsAlgorithm * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkUnivariateStatisticsAlgorithm () | |
~vtkUnivariateStatisticsAlgorithm () | |
virtual void | Assess (vtkTable *inData, vtkMultiBlockDataSet *inMeta, vtkTable *outData) |
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkDescriptiveStatistics, vtkOrderStatistics, vtkPDescriptiveStatistics, and vtkPOrderStatistics.
Definition at line 53 of file vtkUnivariateStatisticsAlgorithm.h.
vtkUnivariateStatisticsAlgorithm::vtkUnivariateStatisticsAlgorithm | ( | ) | [protected] |
vtkUnivariateStatisticsAlgorithm::~vtkUnivariateStatisticsAlgorithm | ( | ) | [protected] |
virtual const char* vtkUnivariateStatisticsAlgorithm::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkDescriptiveStatistics, vtkOrderStatistics, vtkPDescriptiveStatistics, and vtkPOrderStatistics.
static int vtkUnivariateStatisticsAlgorithm::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkDescriptiveStatistics, vtkOrderStatistics, vtkPDescriptiveStatistics, and vtkPOrderStatistics.
virtual int vtkUnivariateStatisticsAlgorithm::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkDescriptiveStatistics, vtkOrderStatistics, vtkPDescriptiveStatistics, and vtkPOrderStatistics.
static vtkUnivariateStatisticsAlgorithm* vtkUnivariateStatisticsAlgorithm::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkDescriptiveStatistics, vtkOrderStatistics, vtkPDescriptiveStatistics, and vtkPOrderStatistics.
void vtkUnivariateStatisticsAlgorithm::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkDescriptiveStatistics, vtkOrderStatistics, vtkPDescriptiveStatistics, and vtkPOrderStatistics.
void vtkUnivariateStatisticsAlgorithm::AddColumn | ( | const char * | namCol | ) |
Convenience method to create a request with a single column name namCol
in a single call; this is the preferred method to select columns, ensuring selection consistency (a single column per request). Warning: no name checking is performed on namCol
; it is the user's responsibility to use valid column names.
virtual int vtkUnivariateStatisticsAlgorithm::RequestSelectedColumns | ( | ) | [virtual] |
Use the current column status values to produce a new request for statistics to be produced when RequestData() is called. Unlike the superclass implementation, this version adds a new request for each selected column instead of a single request containing all the columns.
Reimplemented from vtkStatisticsAlgorithm.
virtual void vtkUnivariateStatisticsAlgorithm::Assess | ( | vtkTable * | inData, | |
vtkMultiBlockDataSet * | inMeta, | |||
vtkTable * | outData | |||
) | [protected, virtual] |
Execute the calculations required by the Assess option.
Implements vtkStatisticsAlgorithm.