@@ -156,12 +156,13 @@ struct HfCandidateSelectorB0ToDPiReduced {
156156 }
157157 }
158158
159- // / Utility function to retrieve the bach pion track
160- // /from the B0 candidate in the D*-pi decay channel
159+ // / Utility function to retrieve the bach pion track
160+ // / from the B0 candidate in the D*-pi decay channel
161161 // / \param candidate is the B0 candidate
162162 // / \return bach pion track
163163 template <IsB0ToDstarPiChannel T1>
164- auto getTrackBachPi (const T1& candidate) {
164+ auto getTrackBachPi (const T1& candidate)
165+ {
165166 return candidate.template prongBachPi_as <TracksBachPion>();
166167 }
167168
@@ -170,21 +171,23 @@ struct HfCandidateSelectorB0ToDPiReduced {
170171 // / \param prongBachPi is the candidate's bachelor pion prong
171172 // / \note this method is used for B0 → D*- π+ candidates with D meson ML scores
172173 template <bool withDmesMl, IsB0ToDstarPiChannel T1, typename T2>
173- auto getMlInputFeatures (const T1& candB0, const T2& prongBachPi) {
174+ auto getMlInputFeatures (const T1& candB0, const T2& prongBachPi)
175+ {
174176 auto prongSoftPi = candB0.template prongSoftPi_as <TracksSoftPions>();
175177 if constexpr (withDmesMl) {
176- return hfMlResponse.getInputFeaturesDStarPi <true >(candB0, prongBachPi, prongSoftPi);
178+ return hfMlResponse.getInputFeaturesDStarPi <true >(candB0, prongBachPi, prongSoftPi);
177179 } else {
178- return hfMlResponse.getInputFeaturesDStarPi <false >(candB0, prongBachPi, prongSoftPi);
180+ return hfMlResponse.getInputFeaturesDStarPi <false >(candB0, prongBachPi, prongSoftPi);
179181 }
180182 }
181183
182- // / Utility function to retrieve the bach pion track
183- // /from the B0 candidate in the D-pi decay channel
184+ // / Utility function to retrieve the bach pion track
185+ // / from the B0 candidate in the D-pi decay channel
184186 // / \param candidate is the B0 candidate
185187 // / \return bach pion track
186188 template <typename T1>
187- auto getTrackBachPi (const T1& candidate) {
189+ auto getTrackBachPi (const T1& candidate)
190+ {
188191 return candidate.template prong1_as <TracksBachPion>();
189192 }
190193
@@ -193,7 +196,8 @@ struct HfCandidateSelectorB0ToDPiReduced {
193196 // / \param prongBachPi is the candidate's bachelor pion prong
194197 // / \note this method is used for B0 → D- π+ candidates with D meson ML scores
195198 template <bool withDmesMl, typename T1, typename T2>
196- auto getMlInputFeatures (const T1& candB0, const T2& prongBachPi) {
199+ auto getMlInputFeatures (const T1& candB0, const T2& prongBachPi)
200+ {
197201 if constexpr (withDmesMl) {
198202 return hfMlResponse.getInputFeatures <true >(candB0, prongBachPi);
199203 } else {
0 commit comments