1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkMultiGroupProbeFilter.cxx,v $
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.
=========================================================================*/
#include "vtkMultiGroupProbeFilter.h"
#include "vtkCompositeDataPipeline.h"
#include "vtkDataSet.h"
#include "vtkHierarchicalDataIterator.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMultiGroupDataSet.h"
#include "vtkObjectFactory.h"
#include "vtkSmartPointer.h"
vtkStandardNewMacro(vtkMultiGroupProbeFilter);
vtkCxxRevisionMacro(vtkMultiGroupProbeFilter, "$Revision: 1.1.2.1 $");
//----------------------------------------------------------------------------
vtkMultiGroupProbeFilter::vtkMultiGroupProbeFilter()
{
}
//----------------------------------------------------------------------------
vtkMultiGroupProbeFilter::~vtkMultiGroupProbeFilter()
{
}
//----------------------------------------------------------------------------
int vtkMultiGroupProbeFilter::FillInputPortInformation(
int port, vtkInformation* info)
{
this->Superclass::FillInputPortInformation(port, info);
if (port == 1)
{
// We have to save vtkDataObject since this filter can work on vtkDataSet
// and vtkMultiGroupDataSet consisting of vtkDataSet leaf nodes.
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkDataObject");
}
return 1;
}
//----------------------------------------------------------------------------
vtkExecutive* vtkMultiGroupProbeFilter::CreateDefaultExecutive()
{
return vtkCompositeDataPipeline::New();
}
//----------------------------------------------------------------------------
int vtkMultiGroupProbeFilter::RequestData(
vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *sourceInfo = inputVector[1]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and ouptut
vtkDataSet *input = vtkDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDataSet *sourceDS = vtkDataSet::SafeDownCast(
sourceInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkMultiGroupDataSet* sourceMG = vtkMultiGroupDataSet::SafeDownCast(
sourceInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDataSet *output = vtkDataSet::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
if (!input)
{
return 0;
}
if (!sourceDS && !sourceMG)
{
vtkErrorMacro("vtkDataSet or vtkMultiGroupDataSet is expected as the input "
"on port 1");
return 0;
}
if (sourceDS)
{
// Superclass knowns exactly what to do.
return this->Superclass::RequestData(request, inputVector, outputVector);
}
bool initialized = false;
vtkSmartPointer<vtkCompositeDataIterator> iter;
iter.TakeReference(sourceMG->NewIterator());
if (iter->IsA("vtkHierarchicalDataIterator"))
{
vtkHierarchicalDataIterator::SafeDownCast(iter)->SetAscendingLevels(0);
}
iter->VisitOnlyLeavesOn();
for (iter->InitTraversal(); !iter->IsDoneWithTraversal(); iter->GoToNextItem())
{
sourceDS = vtkDataSet::SafeDownCast(iter->GetCurrentDataObject());
if (!sourceDS)
{
vtkErrorMacro("All leaves in the multigroup dataset must be vtkDataSet.");
return 0;
}
if (!initialized)
{
initialized = true;
this->InitializeForProbing(input, sourceDS, output);
}
this->ProbeEmptyPoints(input, sourceDS, output);
}
return 1;
}
//----------------------------------------------------------------------------
void vtkMultiGroupProbeFilter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|