VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Filters/StatisticsGnuR/vtkPCAStatisticsGnuR.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003 Program:   Visualization Toolkit
00004 Module:    vtkPCAStatisticsGnuR.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 =========================================================================*/
00015 /*-------------------------------------------------------------------------
00016   Copyright 2010 Sandia Corporation.
00017   Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00018   the U.S. Government retains certain rights in this software.
00019   -------------------------------------------------------------------------*/
00047 #ifndef vtkPCAStatisticsGnuR_h
00048 #define vtkPCAStatisticsGnuR_h
00049 
00050 #include "vtkFiltersStatisticsGnuRModule.h" // For export macro
00051 #include "vtkPCAStatistics.h"
00052 
00053 class vtkDoubleArray;
00054 
00055 class VTKFILTERSSTATISTICSGNUR_EXPORT vtkPCAStatisticsGnuR : public vtkPCAStatistics
00056 {
00057 public:
00058   vtkTypeMacro(vtkPCAStatisticsGnuR,vtkPCAStatistics);
00059   virtual void PrintSelf( ostream& os, vtkIndent indent );
00060   static vtkPCAStatisticsGnuR* New();
00061 
00062 protected:
00063   vtkPCAStatisticsGnuR();
00064   ~vtkPCAStatisticsGnuR();
00065 //BTX
00066   virtual vtkDoubleArray* CalculatePValues(vtkIdTypeArray*, vtkDoubleArray*);
00067 //ETX
00068 
00069 private:
00070   vtkPCAStatisticsGnuR(const vtkPCAStatisticsGnuR&); // Not implemented
00071   void operator=(const vtkPCAStatisticsGnuR&); // Not implemented
00072 };
00073 
00074 #endif // vtkPCAStatisticsGnuR_h
00075