Files
ThirdParty-6/ParaView-5.0.1/VTK/Infovis/BoostGraphAlgorithms/vtkBoostLogWeighting.h

84 lines
2.3 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkBoostLogWeighting.h
-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkBoostLogWeighting - Given an arbitrary-dimension array of doubles,
// replaces each value x with one of:
//
// * The natural logarithm of 1 + x (the default)
// * The base-2 logarithm of 1 + x
//
// .SECTION Thanks
// Developed by Timothy M. Shead (tshead@sandia.gov) at Sandia National Laboratories.
#ifndef vtkBoostLogWeighting_h
#define vtkBoostLogWeighting_h
#include "vtkInfovisBoostGraphAlgorithmsModule.h" // For export macro
#include "vtkArrayDataAlgorithm.h"
class VTKINFOVISBOOSTGRAPHALGORITHMS_EXPORT vtkBoostLogWeighting : public vtkArrayDataAlgorithm
{
public:
static vtkBoostLogWeighting* New();
vtkTypeMacro(vtkBoostLogWeighting, vtkArrayDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
//BTX
enum
{
BASE_E = 0,
BASE_2 = 1
};
//ETX
// Description:
// Specify the logarithm base to apply
vtkSetMacro(Base, int);
vtkGetMacro(Base, int);
// Description:
// Specify whether this filter should emit progress events
vtkSetMacro(EmitProgress, bool);
vtkGetMacro(EmitProgress, bool);
vtkBooleanMacro(EmitProgress, bool);
//BTX
protected:
vtkBoostLogWeighting();
~vtkBoostLogWeighting();
int RequestData(
vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
private:
vtkBoostLogWeighting(const vtkBoostLogWeighting&); // Not implemented
void operator=(const vtkBoostLogWeighting&); // Not implemented
int Base;
bool EmitProgress;
//ETX
};
#endif