Skip to content

Commit

Permalink
fix: missing includes in SeedFinderOrthogonal (#1772)
Browse files Browse the repository at this point in the history
Missing includes in `SeedFinderOrthogonal`. Without this PR, the acts code (`v22.0.0`) will not compile as is in Athena, obliging the costumer to include manually in their code the missing includes.

Compilation was complaining with:
```'Extent' is not a member of 'Acts'```
and 
```'binR' is not a member of 'Acts'```
  • Loading branch information
CarloVarni authored Jan 9, 2023
1 parent 786f62a commit c53dd6c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Core/include/Acts/Seeding/SeedFinderOrthogonal.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include "Acts/Geometry/Extent.hpp"
#include "Acts/Seeding/SeedFilter.hpp"
#include "Acts/Seeding/SeedFinderOrthogonalConfig.hpp"
#include "Acts/Seeding/SeedFinderUtils.hpp"
#include "Acts/Utilities/BinningType.hpp"

#include <cmath>
#include <functional>
Expand Down

0 comments on commit c53dd6c

Please sign in to comment.