//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt 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. // // Copyright 2014 Sandia Corporation. // Copyright 2014 UT-Battelle, LLC. // Copyright 2014 Los Alamos National Security. // // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // the U.S. Government retains certain rights in this software. // // Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National // Laboratory (LANL), the U.S. Government retains certain rights in // this software. //============================================================================ namespace { // Needed to CompactPoints template struct CellSetSingleTypePolicy : public BasePolicy { using AllCellSetList = vtkm::cont::CellSetListTagUnstructured; }; template inline vtkm::filter::PolicyBase> GetCellSetSingleTypePolicy( const vtkm::filter::PolicyBase&) { return vtkm::filter::PolicyBase>(); } } namespace vtkm { namespace filter { //----------------------------------------------------------------------------- inline VTKM_CONT MaskPoints::MaskPoints() : vtkm::filter::FilterDataSet() , Stride(1) , CompactPoints(true) { } //----------------------------------------------------------------------------- template inline VTKM_CONT vtkm::filter::Result MaskPoints::DoExecute( const vtkm::cont::DataSet& input, const vtkm::filter::PolicyBase& policy, const DeviceAdapter& device) { // extract the input cell set const vtkm::cont::DynamicCellSet& cells = input.GetCellSet(this->GetActiveCellSetIndex()); // run the worklet on the cell set and input field vtkm::cont::CellSetSingleType<> outCellSet; vtkm::worklet::MaskPoints worklet; outCellSet = worklet.Run(vtkm::filter::ApplyPolicy(cells, policy), this->Stride, device); // create the output dataset vtkm::cont::DataSet output; output.AddCellSet(outCellSet); output.AddCoordinateSystem(input.GetCoordinateSystem(this->GetActiveCoordinateSystemIndex())); // compact the unused points in the output dataset if (this->CompactPoints) { this->Compactor.SetCompactPointFields(true); vtkm::filter::Result result; result = this->Compactor.DoExecute(output, GetCellSetSingleTypePolicy(policy), DeviceAdapter()); return result; } else { return vtkm::filter::Result(output); } } //----------------------------------------------------------------------------- template inline VTKM_CONT bool MaskPoints::DoMapField(vtkm::filter::Result& result, const vtkm::cont::ArrayHandle& input, const vtkm::filter::FieldMetadata& fieldMeta, const vtkm::filter::PolicyBase& policy, const DeviceAdapter&) { // point data is copied as is because it was not collapsed if (fieldMeta.IsPointField()) { if (this->CompactPoints) { return this->Compactor.DoMapField(result, input, fieldMeta, policy, DeviceAdapter()); } else { result.GetDataSet().AddField(fieldMeta.AsField(input)); return true; } } // cell data does not apply return false; } } }