VTK
dox/Filters/ParallelStatistics/vtkPBivariateLinearTableThreshold.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003 Program:   Visualization Toolkit
00004 Module:    vtkPBivariateLinearTableThreshold.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 2009 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 -------------------------------------------------------------------------*/
00029 #ifndef __vtkPBivariateLinearTableThreshold__h
00030 #define __vtkPBivariateLinearTableThreshold__h
00031 
00032 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
00033 #include "vtkBivariateLinearTableThreshold.h"
00034 
00035 class vtkIdTypeArray;
00036 class vtkMultiProcessController;
00037 
00038 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPBivariateLinearTableThreshold : public vtkBivariateLinearTableThreshold
00039 {
00040 public:
00041   static vtkPBivariateLinearTableThreshold* New();
00042   vtkTypeMacro(vtkPBivariateLinearTableThreshold, vtkBivariateLinearTableThreshold);
00043   void PrintSelf(ostream& os, vtkIndent indent);
00044 
00046 
00048   virtual void SetController(vtkMultiProcessController*);
00049   vtkGetObjectMacro(Controller,vtkMultiProcessController);
00050 protected:
00051   vtkPBivariateLinearTableThreshold();
00052   virtual ~vtkPBivariateLinearTableThreshold();
00054 
00055   virtual int RequestData(
00056     vtkInformation*,
00057     vtkInformationVector**,
00058     vtkInformationVector*);
00059 
00060   vtkMultiProcessController* Controller;
00061 private:
00062   vtkPBivariateLinearTableThreshold(const vtkPBivariateLinearTableThreshold&); // Not implemented
00063   void operator=(const vtkPBivariateLinearTableThreshold&); // Not implemented
00064 };
00065 
00066 #endif