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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPStreaklineFilter.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 "vtkPStreaklineFilter.h"
#include "vtkObjectFactory.h"
#include "vtkSetGet.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkCell.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
#include "vtkIntArray.h"
#include "vtkSmartPointer.h"
#include "vtkFloatArray.h"
#include "vtkMultiProcessController.h"
#include "vtkAppendPolyData.h"
#include "vtkNew.h"
#include <vector>
#include <cassert>
vtkStandardNewMacro(vtkPStreaklineFilter)
vtkPStreaklineFilter::vtkPStreaklineFilter()
{
this->It.Initialize(this);
}
int vtkPStreaklineFilter::OutputParticles(vtkPolyData* particles)
{
return this->It.OutputParticles(particles);
}
void vtkPStreaklineFilter::Finalize()
{
int leader = 0;
int tag = 129;
if(this->Controller->GetLocalProcessId()==leader) //process 0 do the actual work
{
vtkNew<vtkAppendPolyData> append;
int totalNumPts(0);
for(int i=0; i<this->Controller->GetNumberOfProcesses(); i++)
{
if(i!=this->Controller->GetLocalProcessId())
{
vtkSmartPointer<vtkPolyData> output_i = vtkSmartPointer<vtkPolyData>::New();
this->Controller->Receive(output_i, i, tag);
append->AddInputData(output_i);
totalNumPts+= output_i->GetNumberOfPoints();
}
else
{
append->AddInputData(this->Output);
totalNumPts+= this->Output->GetNumberOfPoints();
}
}
append->Update();
vtkPolyData* appoutput = append->GetOutput();
this->Output->Initialize();
this->Output->ShallowCopy(appoutput);
assert(this->Output->GetNumberOfPoints()==totalNumPts);
this->It.Finalize();
}
else
{
//send everything to rank 0
this->Controller->Send(this->Output,leader, tag);
this->Output->Initialize();
}
return;
}
void vtkPStreaklineFilter::PrintSelf(ostream& os, vtkIndent indent)
{
Superclass::PrintSelf(os,indent);
}
|