// // Created by dominik on 8/14/24. // #ifndef RWSIM_SIMS_H #define RWSIM_SIMS_H #include #include #include "motions/base.h" #include "times/base.h" void run_spectrum(std::unordered_map& parameter, Motion& motion, Distribution& dist); void run_ste(std::unordered_map& parameter, Motion& motion, Distribution& dist); void make_trajectory(Motion&, Distribution&, double, std::vector&, std::vector&); #endif //RWSIM_SIMS_H