Skip to content

Commit 72add18

Browse files
committed
Tidy
1 parent 302b35c commit 72add18

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/CombineCodegenImpl.cxx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ void RooFit::Experimental::codegenImpl(VerticalInterpPdf& arg, CodegenContext& c
244244
}
245245

246246
void RooFit::Experimental::codegenImpl(RooParametricHist& arg, CodegenContext& ctx) {
247-
// Translate the ::evaluate() method into codegen
248247
std::vector<double> diffs_flat;
249248
std::vector<double> sums_flat;
250249
if (arg.hasMorphs()) {
@@ -284,7 +283,6 @@ std::string RooFit::Experimental::codegenIntegralImpl(RooParametricHist& arg,
284283
const char* rangeName,
285284
CodegenContext& ctx) {
286285

287-
// Translate the ::analyticalIntegral() method into codegen
288286
std::vector<double> diffs_flat;
289287
std::vector<double> sums_flat;
290288
if (arg.hasMorphs()) {

src/RooParametricHist.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,14 @@ Double_t RooParametricHist::evaluate() const
183183

184184
return RooFit::Detail::MathFuncs::parametricHistEvaluate(
185185
xVal,
186-
pars_vals.data(),
187-
bins_ptr,
186+
pars_vals.data(),
187+
bins_ptr,
188188
N_bins,
189189
_hasMorphs ? coeffs.data() : nullptr,
190190
nMorphs,
191191
_hasMorphs ? diffs_flat.data() : nullptr,
192192
_hasMorphs ? sums_flat.data() : nullptr,
193-
widths_ptr,
193+
widths_ptr,
194194
_smoothRegion
195195
);
196196

0 commit comments

Comments
 (0)