/* * ThreeBody_Angle.hpp * * Created on: 03.09.2013 * Author: heber */ #ifndef THREEBODY_ANGLE_HPP_ #define THREEBODY_ANGLE_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 single angle. */ struct ThreeBody_Angle : public Coordinator { double operator()(const FunctionModel::arguments_t &arguments) const; }; #endif /* THREEBODY_ANGLE_HPP_ */