Skip to content

Commit

Permalink
Merge pull request #635 from ut-issl/feature/fix-orbit-observer-include
Browse files Browse the repository at this point in the history
Fix include path for orbit observer
  • Loading branch information
200km authored Mar 26, 2024
2 parents 6067ab9 + e2480cf commit 37cccba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/ideal/orbit_observer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

#include "orbit_observer.hpp"

#include <library/initialize/initialize_file_access.hpp>
#include <library/randomization/global_randomization.hpp>
#include <math_physics/randomization/global_randomization.hpp>
#include <setting_file_reader/initialize_file_access.hpp>

OrbitObserver::OrbitObserver(const int prescaler, ClockGenerator* clock_generator, const NoiseFrame noise_frame,
const libra::Vector<6> error_standard_deviation, const Orbit& orbit)
Expand Down
6 changes: 3 additions & 3 deletions src/components/ideal/orbit_observer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#define S2E_COMPONENTS_IDEAL_ORBIT_OBSERVER_HPP_

#include <dynamics/orbit/orbit.hpp>
#include <library/logger/loggable.hpp>
#include <library/math/vector.hpp>
#include <library/randomization/normal_randomization.hpp>
#include <logger/loggable.hpp>
#include <math_physics/math/vector.hpp>
#include <math_physics/randomization/normal_randomization.hpp>

#include "../base/component.hpp"

Expand Down

0 comments on commit 37cccba

Please sign in to comment.