• Main Page
  • Related Pages
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

dox/Infovis/vtkMatrixColumnNorm.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkMatrixColumnNorm.h,v $
00005   
00006 -------------------------------------------------------------------------
00007   Copyright 2008 Sandia Corporation.
00008   Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00009   the U.S. Government retains certain rights in this software.
00010 -------------------------------------------------------------------------
00011 
00012   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00013   All rights reserved.
00014   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00015 
00016      This software is distributed WITHOUT ANY WARRANTY; without even
00017      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00018      PURPOSE.  See the above copyright notice for more information.
00019 
00020 =========================================================================*/
00021 
00034 #ifndef __vtkMatrixColumnNorm_h
00035 #define __vtkMatrixColumnNorm_h
00036 
00037 #include "vtkArrayDataAlgorithm.h"
00038 
00039 class VTK_INFOVIS_EXPORT vtkMatrixColumnNorm : public vtkArrayDataAlgorithm
00040 {
00041 public:
00042   static vtkMatrixColumnNorm* New();
00043   vtkTypeRevisionMacro(vtkMatrixColumnNorm, vtkArrayDataAlgorithm);
00044   void PrintSelf(ostream& os, vtkIndent indent);
00045 
00047 
00048   vtkGetMacro(L, int);
00049   void SetL(int value);
00051 
00052 protected:
00053   vtkMatrixColumnNorm();
00054   ~vtkMatrixColumnNorm();
00055 
00056   int RequestData(
00057     vtkInformation*, 
00058     vtkInformationVector**, 
00059     vtkInformationVector*);
00060 
00061 private:
00062   vtkMatrixColumnNorm(const vtkMatrixColumnNorm&); // Not implemented
00063   void operator=(const vtkMatrixColumnNorm&);   // Not implemented
00064 
00065   int L;
00066 };
00067 
00068 #endif
00069 

Generated by  doxygen 1.7.1