00001 #ifndef gridripper_math_XFArray 00002 #define gridripper_math_XFArray 00003 00004 #include <gridripper/config.h> 00005 #include <gridripper/tvector.h> 00006 00007 namespace gridripper { namespace math { 00008 00016 struct XFArray 00017 { 00018 public: 00020 tvector<GReal_t> x; 00021 00023 tvector<GReal_t> f; 00024 00026 XFArray(): x(), f() { } 00027 00029 XFArray(int n): x(n), f(n) { } 00030 00032 XFArray(const XFArray& other): x(other.x), f(other.f) { } 00033 00034 ~XFArray() { } 00035 }; 00036 00037 } } // namespace gridripper 00038 00039 #endif /* gridripper_math_XFArray */