-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ex-rename-vtx-perf-writer
- Loading branch information
Showing
34 changed files
with
389 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+145 KB
CI/physmon/reference/trackfinding_1muon/orthogonal/performance_fitting_ckf.root
Binary file not shown.
Binary file added
BIN
+151 KB
CI/physmon/reference/trackfinding_1muon/seeded/performance_fitting_ckf.root
Binary file not shown.
Binary file added
BIN
+150 KB
CI/physmon/reference/trackfinding_1muon/truth_estimated/performance_fitting_ckf.root
Binary file not shown.
Binary file added
BIN
+150 KB
CI/physmon/reference/trackfinding_1muon/truth_smeared/performance_fitting_ckf.root
Binary file not shown.
Binary file added
BIN
+125 KB
CI/physmon/reference/trackfinding_4muon_50vertices/performance_fitting_ckf.root
Binary file not shown.
Binary file added
BIN
+125 KB
CI/physmon/reference/trackfinding_4muon_50vertices/performance_fitting_ckf_ambi.root
Binary file not shown.
Binary file added
BIN
+183 KB
CI/physmon/reference/trackfinding_ttbar_pu200/performance_fitting_ckf.root
Binary file not shown.
Binary file added
BIN
+168 KB
CI/physmon/reference/trackfinding_ttbar_pu200/performance_fitting_ckf_ambi.root
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// This file is part of the ACTS project. | ||
// | ||
// Copyright (C) 2016 CERN for the benefit of the ACTS project | ||
// | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
#pragma once | ||
|
||
#include "Acts/Definitions/Algebra.hpp" | ||
#include "Acts/Definitions/TrackParametrization.hpp" | ||
#include "Acts/Utilities/detail/periodic.hpp" | ||
|
||
namespace Acts { | ||
|
||
/// Normalize the bound parameter angles | ||
/// | ||
/// @param boundParams The bound parameters to normalize | ||
/// | ||
/// @return The normalized bound parameters | ||
inline BoundVector normalizeBoundParameters(const BoundVector& boundParams) { | ||
BoundVector result = boundParams; | ||
std::tie(result[eBoundPhi], result[eBoundTheta]) = | ||
detail::normalizePhiTheta(result[eBoundPhi], result[eBoundTheta]); | ||
return result; | ||
} | ||
|
||
/// Subtract bound parameters and take care of angle periodicity for phi and | ||
/// theta. | ||
/// | ||
/// @param lhs The left hand side bound parameters | ||
/// @param rhs The right hand side bound parameters | ||
/// | ||
/// @return The difference of the bound parameters | ||
inline BoundVector subtractBoundParameters(const BoundVector& lhs, | ||
const BoundVector& rhs) { | ||
BoundVector result = lhs - rhs; | ||
result[eBoundPhi] = | ||
detail::difference_periodic(lhs[eBoundPhi], rhs[eBoundPhi], 2 * M_PI); | ||
return result; | ||
} | ||
|
||
} // namespace Acts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.