/*========================================================================= Program: Visualization Toolkit Module: VTXvtkVTU.h 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. =========================================================================*/ /* * VTXvtkVTU.h : class that supports UnstructuredMesh schema in VTK XML * format .vtu extends abstract VTXvtkBase * * Created on: June 24, 2019 * Author: William F Godoy godoywf@ornl.gov */ #ifndef VTK_IO_ADIOS2_VTX_SCHEMA_VTK_VTXxmlVTU_h #define VTK_IO_ADIOS2_VTX_SCHEMA_VTK_VTXxmlVTU_h #include #include #include #include "vtkNew.h" #include "vtkUnstructuredGrid.h" #include "VTX/schema/vtk/VTXvtkBase.h" namespace vtx { namespace schema { class VTXvtkVTU : public VTXvtkBase { public: VTXvtkVTU(const std::string& schema, adios2::IO& io, adios2::Engine& engine); ~VTXvtkVTU(); private: /** Could be extended in a container, this is a per-rank ImageData */ vtkNew UnstructuredGrid; /** BlockIDs carried by current rank */ std::vector BlockIDs; void DoFill(vtkMultiBlockDataSet* multiBlock, const size_t step) final; void ReadPiece(const size_t step, const size_t pieceID) final; void Init() final; #define declare_type(T) \ void SetBlocks(adios2::Variable variable, types::DataArray& dataArray, const size_t step) \ final; VTK_IO_ADIOS2_VTX_ARRAY_TYPE(declare_type) #undef declare_type template void SetBlocksCommon( adios2::Variable variable, types::DataArray& dataArray, const size_t step); }; } // end namespace schema } // end namespace vtx #endif /* VTK_IO_ADIOS2_VTX_SCHEMA_VTK_VTXxmlVTU_h */