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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkCompositeDataProbeFilter.cxx
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 "vtkCompositeDataProbeFilter.h"
#include "vtkCellData.h"
#include "vtkCompositeDataIterator.h"
#include "vtkCompositeDataPipeline.h"
#include "vtkCompositeDataSet.h"
#include "vtkDataArray.h"
#include "vtkDataSet.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMath.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkSmartPointer.h"
vtkStandardNewMacro(vtkCompositeDataProbeFilter);
//----------------------------------------------------------------------------
vtkCompositeDataProbeFilter::vtkCompositeDataProbeFilter()
{
this->PassPartialArrays = false;
}
//----------------------------------------------------------------------------
vtkCompositeDataProbeFilter::~vtkCompositeDataProbeFilter()
{
}
//----------------------------------------------------------------------------
int vtkCompositeDataProbeFilter::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 vtkCompositeDataSet consisting of vtkDataSet leaf nodes.
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkDataObject");
}
return 1;
}
//----------------------------------------------------------------------------
vtkExecutive* vtkCompositeDataProbeFilter::CreateDefaultExecutive()
{
return vtkCompositeDataPipeline::New();
}
//----------------------------------------------------------------------------
int vtkCompositeDataProbeFilter::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 output
vtkDataSet *input = vtkDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDataSet *sourceDS = vtkDataSet::SafeDownCast(
sourceInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkCompositeDataSet* sourceComposite = vtkCompositeDataSet::SafeDownCast(
sourceInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDataSet *output = vtkDataSet::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
if (!input)
{
return 0;
}
if (!sourceDS && !sourceComposite)
{
vtkErrorMacro("vtkDataSet or vtkCompositeDataSet 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);
}
if (!this->BuildFieldList(sourceComposite))
{
return 0;
}
vtkSmartPointer<vtkCompositeDataIterator> iter;
iter.TakeReference(sourceComposite->NewIterator());
iter->VisitOnlyLeavesOn();
// We do reverse traversal, so that for hierarchical datasets, we traverse the
// higher resolution blocks first.
int idx=0;
for (iter->InitReverseTraversal(); !iter->IsDoneWithTraversal(); iter->GoToNextItem())
{
sourceDS = vtkDataSet::SafeDownCast(iter->GetCurrentDataObject());
if (!sourceDS)
{
vtkErrorMacro("All leaves in the multiblock dataset must be vtkDataSet.");
return 0;
}
if (sourceDS->GetNumberOfPoints() == 0)
{
continue;
}
if (idx==0)
{
this->InitializeForProbing(input, output);
}
this->ProbeEmptyPoints(input, idx, sourceDS, output);
idx++;
}
return 1;
}
//----------------------------------------------------------------------------
void vtkCompositeDataProbeFilter::InitializeForProbing(vtkDataSet *input, vtkDataSet *output)
{
this->Superclass::InitializeForProbing(input, output);
if (!this->PassPartialArrays)
{
return;
}
vtkPointData* outPD = output->GetPointData();
vtkIdType numPts = input->GetNumberOfPoints();
outPD->SetNumberOfTuples(numPts);
// Initialize the arrays.
for (int cc=0; cc < outPD->GetNumberOfArrays(); cc++)
{
vtkDataArray* da = outPD->GetArray(cc);
if (da)
{
double null_value = 0.0;
if (da->IsA("vtkDoubleArray") || da->IsA("vtkFloatArray"))
{
null_value = vtkMath::Nan();
}
for (int kk=0; kk < da->GetNumberOfComponents(); kk++)
{
da->FillComponent(kk, null_value);
}
}
}
// Override superclass's default behavior to call NullPoint() on every point
// that is does not hit since we already initialized arrays with NaNs.
this->UseNullPoint = false;
}
//----------------------------------------------------------------------------
int vtkCompositeDataProbeFilter::BuildFieldList(vtkCompositeDataSet* source)
{
delete this->PointList;
delete this->CellList;
this->PointList = 0;
this->CellList = 0;
vtkSmartPointer<vtkCompositeDataIterator> iter;
iter.TakeReference(source->NewIterator());
iter->VisitOnlyLeavesOn();
int numDatasets = 0;
for (iter->InitReverseTraversal(); !iter->IsDoneWithTraversal();
iter->GoToNextItem())
{
vtkDataSet* sourceDS = vtkDataSet::SafeDownCast(iter->GetCurrentDataObject());
if (!sourceDS)
{
vtkErrorMacro("All leaves in the multiblock dataset must be vtkDataSet.");
return 0;
}
if (sourceDS->GetNumberOfPoints() == 0)
{
continue;
}
numDatasets++;
}
this->PointList = new vtkDataSetAttributes::FieldList(numDatasets);
this->CellList = new vtkDataSetAttributes::FieldList(numDatasets);
bool initializedPD = false;
bool initializedCD = false;
for (iter->InitReverseTraversal(); !iter->IsDoneWithTraversal();
iter->GoToNextItem())
{
vtkDataSet* sourceDS = vtkDataSet::SafeDownCast(iter->GetCurrentDataObject());
if (sourceDS->GetNumberOfPoints() == 0)
{
continue;
}
if (!initializedPD)
{
this->PointList->InitializeFieldList(sourceDS->GetPointData());
initializedPD = true;
}
else
{
if (this->PassPartialArrays)
{
this->PointList->UnionFieldList(sourceDS->GetPointData());
}
else
{
this->PointList->IntersectFieldList(sourceDS->GetPointData());
}
}
if (sourceDS->GetNumberOfCells() > 0)
{
if (!initializedCD)
{
this->CellList->InitializeFieldList(sourceDS->GetCellData());
initializedCD = true;
}
else
{
if (this->PassPartialArrays)
{
this->CellList->UnionFieldList(sourceDS->GetCellData());
}
else
{
this->CellList->IntersectFieldList(sourceDS->GetPointData());
}
}
}
}
return 1;
}
//----------------------------------------------------------------------------
void vtkCompositeDataProbeFilter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << "PassPartialArrays: " << this->PassPartialArrays << endl;
}
|