Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Parallel/vtkTreeCompositer.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkTreeCompositer.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00016 
00017 // This software and ancillary information known as vtk_ext (and
00018 // herein called "SOFTWARE") is made available under the terms
00019 // described below.  The SOFTWARE has been approved for release with
00020 // associated LA_CC Number 99-44, granted by Los Alamos National
00021 // Laboratory in July 1999.
00022 //
00023 // Unless otherwise indicated, this SOFTWARE has been authored by an
00024 // employee or employees of the University of California, operator of
00025 // the Los Alamos National Laboratory under Contract No. W-7405-ENG-36
00026 // with the United States Department of Energy.
00027 //
00028 // The United States Government has rights to use, reproduce, and
00029 // distribute this SOFTWARE.  The public may copy, distribute, prepare
00030 // derivative works and publicly display this SOFTWARE without charge,
00031 // provided that this Notice and any statement of authorship are
00032 // reproduced on all copies.
00033 //
00034 // Neither the U. S. Government, the University of California, nor the
00035 // Advanced Computing Laboratory makes any warranty, either express or
00036 // implied, nor assumes any liability or responsibility for the use of
00037 // this SOFTWARE.
00038 //
00039 // If SOFTWARE is modified to produce derivative works, such modified
00040 // SOFTWARE should be clearly marked, so as not to confuse it with the
00041 // version available from Los Alamos National Laboratory.
00042 
00043 
00067 #ifndef __vtkTreeCompositer_h
00068 #define __vtkTreeCompositer_h
00069 
00070 #include "vtkCompositer.h"
00071 
00072 
00073 class VTK_PARALLEL_EXPORT vtkTreeCompositer : public vtkCompositer
00074 {
00075 public:
00076   static vtkTreeCompositer *New();
00077   vtkTypeRevisionMacro(vtkTreeCompositer,vtkCompositer);
00078   void PrintSelf(ostream& os, vtkIndent indent);
00079 
00080   virtual void CompositeBuffer(vtkDataArray *pBuf, vtkFloatArray *zBuf,
00081                                vtkDataArray *pTmp, vtkFloatArray *zTmp);
00082 
00083 protected:
00084   vtkTreeCompositer();
00085   ~vtkTreeCompositer();
00086 
00087 private:
00088   vtkTreeCompositer(const vtkTreeCompositer&); // Not implemented
00089   void operator=(const vtkTreeCompositer&); // Not implemented
00090 };
00091 
00092 #endif