/* * FourBody_TorsionAngle.hpp * * Created on: 03.09.2013 * Author: heber */ #ifndef FOURBODY_TORSIONANGLE_HPP_ #define FOURBODY_TORSIONANGLE_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Coordinator.hpp" /** This class implements the Coordinator interface for the * conversion of an arguments_t list into a torsional angle. */ struct FourBody_TorsionAngle : public Coordinator { double operator()(const FunctionModel::arguments_t &arguments) const; }; #endif /* FOURBODY_TORSIONANGLE_HPP_ */