// Copyright(C) 1999-2022, 2024 National Technology & Engineering Solutions // of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with // NTESS, the U.S. Government retains certain rights in this software. // // See packages/seacas/LICENSE for details #pragma once #include "Ioss_Transform.h" // for Transform, Factory #include "Ioss_TransformFactory.h" #include "Ioss_VariableType.h" // for VariableType #include #include // for string #include // for vector #include "iotr_export.h" #include "vtk_ioss_mangle.h" namespace Ioss { class Field; } // namespace Ioss namespace Iotr { class IOTR_EXPORT Offset3D_Factory : public Ioss::TransformFactory { public: static const Offset3D_Factory *factory(); private: Offset3D_Factory(); IOSS_NODISCARD Ioss::Transform *make(const std::string & /*unused*/) const override; }; class IOTR_EXPORT Offset3D : public Ioss::Transform { friend class Offset3D_Factory; public: IOSS_NODISCARD const Ioss::VariableType * output_storage(const Ioss::VariableType *in) const override; IOSS_NODISCARD size_t output_count(size_t in) const override; void set_properties(const std::string &name, const std::vector &values) override; void set_properties(const std::string &name, const std::vector &values) override; protected: Offset3D(); bool internal_execute(const Ioss::Field &field, void *data) override; private: int intOffset[3]{}; double realOffset[3]{}; }; } // namespace Iotr