VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkTreeFieldAggregator.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 2008 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 -------------------------------------------------------------------------*/ 00037 #ifndef __vtkTreeFieldAggregator_h 00038 #define __vtkTreeFieldAggregator_h 00039 00040 class vtkPoints; 00041 class vtkTree; 00042 00043 #include "vtkInfovisCoreModule.h" // For export macro 00044 #include "vtkTreeAlgorithm.h" 00045 00046 class VTKINFOVISCORE_EXPORT vtkTreeFieldAggregator : public vtkTreeAlgorithm 00047 { 00048 public: 00049 static vtkTreeFieldAggregator *New(); 00050 00051 vtkTypeMacro(vtkTreeFieldAggregator,vtkTreeAlgorithm); 00052 void PrintSelf(ostream& os, vtkIndent indent); 00053 00055 00058 vtkGetStringMacro(Field); 00059 vtkSetStringMacro(Field); 00061 00063 00065 vtkGetMacro(MinValue, double); 00066 vtkSetMacro(MinValue, double); 00068 00070 00071 vtkSetMacro(LeafVertexUnitSize, bool); 00072 vtkGetMacro(LeafVertexUnitSize, bool); 00073 vtkBooleanMacro(LeafVertexUnitSize, bool); 00075 00077 00079 vtkSetMacro(LogScale, bool); 00080 vtkGetMacro(LogScale, bool); 00081 vtkBooleanMacro(LogScale, bool); 00082 protected: 00083 vtkTreeFieldAggregator(); 00084 ~vtkTreeFieldAggregator(); 00086 00087 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00088 00089 private: 00090 char* Field; 00091 bool LeafVertexUnitSize; 00092 bool LogScale; 00093 double MinValue; 00094 vtkTreeFieldAggregator(const vtkTreeFieldAggregator&); // Not implemented. 00095 void operator=(const vtkTreeFieldAggregator&); // Not implemented. 00096 double GetDoubleValue(vtkAbstractArray* arr, vtkIdType id); 00097 static void SetDoubleValue(vtkAbstractArray* arr, vtkIdType id, double value); 00098 }; 00099 00100 #endif