VTK
dox/Filters/StatisticsGnuR/vtkDescriptiveStatisticsGnuR.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003 Program:   Visualization Toolkit
00004 Module:    vtkDescriptiveStatisticsGnuR.h
00005 
00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007 All rights reserved.
00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010 This software is distributed WITHOUT ANY WARRANTY; without even
00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012 PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00042 #ifndef __vtkDescriptiveStatisticsGnuR_h
00043 #define __vtkDescriptiveStatisticsGnuR_h
00044 
00045 #include "vtkFiltersStatisticsGnuRModule.h" // For export macro
00046 #include "vtkDescriptiveStatistics.h"
00047 
00048 class vtkDoubleArray;
00049 
00050 class VTKFILTERSSTATISTICSGNUR_EXPORT vtkDescriptiveStatisticsGnuR : public vtkDescriptiveStatistics
00051 {
00052 public:
00053   vtkTypeMacro(vtkDescriptiveStatisticsGnuR, vtkDescriptiveStatistics);
00054   void PrintSelf(ostream& os, vtkIndent indent);
00055   static vtkDescriptiveStatisticsGnuR* New();
00056 
00057 protected:
00058   vtkDescriptiveStatisticsGnuR();
00059   ~vtkDescriptiveStatisticsGnuR();
00060 
00061 //BTX
00062   virtual vtkDoubleArray* CalculatePValues(vtkDoubleArray*);
00063 //ETX
00064 
00065 private:
00066   vtkDescriptiveStatisticsGnuR(const vtkDescriptiveStatisticsGnuR&); // Not implemented
00067   void operator=(const vtkDescriptiveStatisticsGnuR&); // Not implemented
00068 };
00069 
00070 #endif