Skip to content

Commit

Permalink
Merge branch 'main' into z0-eff
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Oct 22, 2024
2 parents 259fc7c + 6f3673d commit 5571cb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repos:
- id: license
name: license
language: system
entry: CI/check_license.py
entry: CI/check_license.py --fix
files: \.(cpp|hpp|ipp|cu|cuh)$

- repo: local
Expand Down
4 changes: 2 additions & 2 deletions Tests/UnitTests/Core/TrackFitting/FitterTestsCommon.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ auto makeStraightPropagator(std::shared_ptr<const Acts::TrackingGeometry> geo) {
cfg.resolveMaterial = true;
cfg.resolveSensitive = true;
Acts::Navigator navigator(
cfg, Acts::getDefaultLogger("Navigator", Acts::Logging::VERBOSE));
cfg, Acts::getDefaultLogger("Navigator", Acts::Logging::INFO));
Acts::StraightLineStepper stepper;
return Acts::Propagator<Acts::StraightLineStepper, Acts::Navigator>(
stepper, std::move(navigator));
Expand All @@ -105,7 +105,7 @@ auto makeConstantFieldPropagator(
cfg.resolveMaterial = true;
cfg.resolveSensitive = true;
Acts::Navigator navigator(
cfg, Acts::getDefaultLogger("Navigator", Acts::Logging::VERBOSE));
cfg, Acts::getDefaultLogger("Navigator", Acts::Logging::INFO));
auto field =
std::make_shared<Acts::ConstantBField>(Acts::Vector3(0.0, 0.0, bz));
stepper_t stepper(std::move(field));
Expand Down

0 comments on commit 5571cb4

Please sign in to comment.