vtkPSciVizDescriptiveStats.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPSciVizDescriptiveStats.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2011 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19  -------------------------------------------------------------------------*/
32 #ifndef vtkPSciVizDescriptiveStats_h
33 #define vtkPSciVizDescriptiveStats_h
34 
35 #include "vtkPVVTKExtensionsFiltersStatisticsModule.h" //needed for exports
36 #include "vtkSciVizStatistics.h"
37 
39  : public vtkSciVizStatistics
40 {
41 public:
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
46  vtkSetMacro(SignedDeviations, int);
47  vtkGetMacro(SignedDeviations, int);
48 
49 protected:
51  ~vtkPSciVizDescriptiveStats() override;
52 
53  int LearnAndDerive(vtkMultiBlockDataSet* model, vtkTable* inData) override;
54  int AssessData(
55  vtkTable* observations, vtkDataObject* dataset, vtkMultiBlockDataSet* model) override;
56 
58 
59 private:
61  void operator=(const vtkPSciVizDescriptiveStats&) = delete;
62 };
63 
64 #endif // vtkPSciVizDescriptiveStats_h
virtual int AssessData(vtkTable *observations, vtkDataObject *dataset, vtkMultiBlockDataSet *model)=0
Method subclasses must override to assess an input table given a model of the proper type...
#define VTKPVVTKEXTENSIONSFILTERSSTATISTICS_EXPORT
static vtkTableAlgorithm * New()
virtual int LearnAndDerive(vtkMultiBlockDataSet *model, vtkTable *inData)=0
Method subclasses must override to calculate a full model from the given input data.
Abstract base class for computing statistics with vtkStatistics.
Provide access to VTK descriptive statistics.
void PrintSelf(ostream &os, vtkIndent indent) override