//============================================================================ // 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. //============================================================================ #ifndef vtk_m_filter_Threshold_hxx #define vtk_m_filter_Threshold_hxx #include #include #include #include namespace { class ThresholdRange { public: VTKM_CONT ThresholdRange(const vtkm::Float64& lower, const vtkm::Float64& upper) : Lower(lower) , Upper(upper) { } template VTKM_EXEC bool operator()(const T& value) const { return value >= static_cast(this->Lower) && value <= static_cast(this->Upper); } //Needed to work with ArrayHandleVirtual template VTKM_EXEC bool operator()( const vtkm::internal::ArrayPortalValueReference& value) const { using T = typename PortalType::ValueType; return value.Get() >= static_cast(this->Lower) && value.Get() <= static_cast(this->Upper); } private: vtkm::Float64 Lower; vtkm::Float64 Upper; }; } // end anon namespace namespace vtkm { namespace filter { //----------------------------------------------------------------------------- template vtkm::cont::DataSet Threshold::DoExecute(const vtkm::cont::DataSet& input, const vtkm::cont::ArrayHandle& field, const vtkm::filter::FieldMetadata& fieldMeta, vtkm::filter::PolicyBase policy) { //get the cells and coordinates of the dataset const vtkm::cont::DynamicCellSet& cells = input.GetCellSet(); ThresholdRange predicate(this->GetLowerThreshold(), this->GetUpperThreshold()); vtkm::cont::DynamicCellSet cellOut = this->Worklet.Run(vtkm::filter::ApplyPolicyCellSet(cells, policy, *this), field, fieldMeta.GetAssociation(), predicate, this->GetAllInRange()); vtkm::cont::DataSet output; output.SetCellSet(cellOut); output.AddCoordinateSystem(input.GetCoordinateSystem(this->GetActiveCoordinateSystemIndex())); return output; } } } #endif