Skip to content

Commit

Permalink
missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
KSkwarczynski committed Sep 6, 2024
1 parent 27ffd2e commit e123020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion covariance/covarianceXsec.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class covarianceXsec : public covarianceBase {
/// @brief DB Grab the Spline Indices for the relevant DetID
const std::vector<int> GetSplineParsIndexFromDetID(const int DetID){return GetParsIndexFromDetID(DetID, kSpline);}
/// @brief ETA Grab the index of the spline relative to the _fSplineNames vector.
const std::vector<int> GetSplineSystIndexFromDetID(const int DetID){GetSystIndexFromDetID(DetID, kSpline);};
const std::vector<int> GetSplineSystIndexFromDetID(const int DetID){return GetSystIndexFromDetID(DetID, kSpline);};
/// @brief Grab the index of the syst relative to global numbering.
const std::vector<int> GetSystIndexFromDetID(const int DetID, const SystType Type);

Expand Down

0 comments on commit e123020

Please sign in to comment.