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

Servers/Filters/vtkTemporalPickFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkTemporalPickFilter.h,v $
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 =========================================================================*/
00025 #ifndef __vtkTemporalPickFilter_h
00026 #define __vtkTemporalPickFilter_h
00027 
00028 #include "vtkDataSetAlgorithm.h"
00029 
00030 class vtkMultiProcessController;
00031 
00032 class VTK_EXPORT vtkTemporalPickFilter : public vtkDataSetAlgorithm
00033 {
00034 public:
00035   vtkTypeRevisionMacro(vtkTemporalPickFilter,vtkDataSetAlgorithm);
00036   void PrintSelf(ostream& os, vtkIndent indent);
00037 
00039   static vtkTemporalPickFilter *New();
00040  
00043   void AnimateInit();
00044 
00046   void AnimateTick(double TheTime);
00047 
00049 
00051   vtkSetMacro(PointOrCell,int);
00052   vtkGetMacro(PointOrCell,int);
00053   vtkBooleanMacro(PointOrCell,int);
00055 
00057 
00058   virtual void SetController(vtkMultiProcessController*);
00059   vtkGetObjectMacro(Controller, vtkMultiProcessController);
00061 
00062 protected:
00063   vtkTemporalPickFilter();
00064   ~vtkTemporalPickFilter();
00065 
00066   virtual int FillOutputPortInformation(int, vtkInformation *);
00067 
00068   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00069 
00070   vtkUnstructuredGrid *History;
00071 
00072   //Controls which data RequestData passes through.
00073   bool Empty;
00074 
00075   int PointOrCell;
00076 
00077   vtkMultiProcessController* Controller;
00078 
00079   int HasAllData;
00080 private:
00081   vtkTemporalPickFilter(const vtkTemporalPickFilter&);  // Not implemented.
00082   void operator=(const vtkTemporalPickFilter&);  // Not implemented.
00083 };
00084 
00085 #endif

Generated on Tue May 30 12:31:47 2006 for ParaView by doxygen 1.3.5