Skip to content

Commit

Permalink
documenting missing parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
asalzburger committed Nov 20, 2023
1 parent 2475b58 commit fe3331e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Core/include/Acts/Vertexing/FullBilloirVertexFitter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class FullBilloirVertexFitter {
/// @brief Constructor used if input_track_t type == BoundTrackParameters
///
/// @param cfg Configuration object
/// @param logger Logging instance
template <
typename T = input_track_t,
std::enable_if_t<std::is_same<T, BoundTrackParameters>::value, int> = 0>
Expand All @@ -85,6 +86,7 @@ class FullBilloirVertexFitter {
/// @param cfg Configuration object
/// @param func Function extracting BoundTrackParameters from input_track_t
/// object
/// @param logger Logging instance
FullBilloirVertexFitter(
const Config& cfg,
std::function<BoundTrackParameters(input_track_t)> func,
Expand Down
1 change: 1 addition & 0 deletions Core/include/Acts/Vertexing/ImpactPointEstimator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class ImpactPointEstimator {
/// @brief Constructor
///
/// @param cfg Configuration object
/// @param logger Logging instance
ImpactPointEstimator(const Config& cfg,
std::unique_ptr<const Logger> logger = getDefaultLogger(
"ImpactPointEstimator", Logging::INFO))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ inline BinningValue stringToBinningValue(const std::string &binningString) {
/// e.g. "r,z" -> {binR, binZ}
///
/// @param binningString
/// @param del the delimiter for the splitting
///
/// @return a vector of binninng values
inline std::vector<BinningValue> stringToBinningValues(
Expand Down

0 comments on commit fe3331e

Please sign in to comment.