// // Author: Joshua Cohen // Copyright 2016 // #ifndef POSITION_H #define POSITION_H #include struct Position { std::vector j; std::vector jdot; std::vector jddot; Position(); void lookvec(double,double,std::vector&); }; #endif