Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Aug 19, 2024
1 parent 8dbaf91 commit 474eeca
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
25 changes: 13 additions & 12 deletions Core/include/Acts/Propagator/Propagator.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@ auto Acts::Propagator<S, N>::propagate(const parameters_t& start,
template <typename S, typename N>
template <typename parameters_t, typename propagator_options_t,
typename target_aborter_t, typename path_aborter_t>
auto Acts::Propagator<S, N>::propagate(
const parameters_t& start, const Surface& target,
const propagator_options_t& options) const
-> Result<action_list_t_result_t<
StepperBoundTrackParameters,
typename propagator_options_t::action_list_type>> {
auto Acts::Propagator<S, N>::propagate(const parameters_t& start,
const Surface& target,
const propagator_options_t& options)
const -> Result<action_list_t_result_t<
StepperBoundTrackParameters,
typename propagator_options_t::action_list_type>> {
static_assert(Concepts::BoundTrackParametersConcept<parameters_t>,
"Parameters do not fulfill bound parameters concept.");

Expand Down Expand Up @@ -325,12 +325,13 @@ auto Acts::Propagator<S, N>::makeResult(propagator_state_t state,

template <typename S, typename N>
template <typename propagator_state_t, typename propagator_options_t>
auto Acts::Propagator<S, N>::makeResult(
propagator_state_t state, Result<void> propagationResult,
const Surface& target, const propagator_options_t& /*options*/) const
-> Result<action_list_t_result_t<
StepperBoundTrackParameters,
typename propagator_options_t::action_list_type>> {
auto Acts::Propagator<S, N>::makeResult(propagator_state_t state,
Result<void> propagationResult,
const Surface& target,
const propagator_options_t& /*options*/)
const -> Result<action_list_t_result_t<
StepperBoundTrackParameters,
typename propagator_options_t::action_list_type>> {
// Type of track parameters produced at the end of the propagation
using ReturnParameterType = StepperBoundTrackParameters;

Expand Down
7 changes: 2 additions & 5 deletions Examples/Python/python/acts/examples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,7 @@ def _allmods(mod, base, found):
key=lambda m: (
(2, m[0])
if m[0] == "ActsPythonBindings"
else (1, m[0])
if m[0].startswith("_")
else (0, m[0])
else (1, m[0]) if m[0].startswith("_") else (0, m[0])
),
):
if (
Expand Down Expand Up @@ -353,8 +351,7 @@ def __call__(
self,
minLevel: acts.logging.Level = acts.logging.VERBOSE,
maxLevel: acts.logging.Level = acts.logging.FATAL,
) -> acts.logging.Level:
...
) -> acts.logging.Level: ...


def defaultLogging(
Expand Down

0 comments on commit 474eeca

Please sign in to comment.