/*************************************************************************** * Copyright (c) 2023 Ondsel, Inc. * * * * This file is part of OndselSolver. * * * * See LICENSE file for details about copyright. * ***************************************************************************/ #pragma once #include "StateData.h" namespace MbD { class PosVelAccData : public StateData { //refData rFfF aAFf vFfF omeFfF aFfF alpFfF public: std::ostream& printOn(std::ostream& s) const override; std::shared_ptr refData; FColDsptr rFfF, vFfF, omeFfF, aFfF, alpFfF; FMatDsptr aAFf; }; }