From 11e2661bb9b884d5cd3f8f1ce41745e6f2ccc590 Mon Sep 17 00:00:00 2001 From: Olivier Couet Date: Thu, 27 Jan 2022 10:36:09 +0100 Subject: [PATCH] batchcompute formatting [skip-ci] --- roofit/batchcompute/inc/RooMath.h | 8 ++++---- roofit/batchcompute/inc/RunContext.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/roofit/batchcompute/inc/RooMath.h b/roofit/batchcompute/inc/RooMath.h index ec4e2be087ec0..216559bd87b18 100644 --- a/roofit/batchcompute/inc/RooMath.h +++ b/roofit/batchcompute/inc/RooMath.h @@ -39,7 +39,7 @@ class RooMath { * * The method described in * - * S.M. Abrarov, B.M. Quine: "Efficient algotithmic implementation of + * S.M. Abrarov, B.M. Quine: "Efficient algorithmic implementation of * Voigt/complex error function based on exponential series approximation" * published in Applied Mathematics and Computation 218 (2011) 1894-1902 * doi:10.1016/j.amc.2011.06.072 @@ -53,7 +53,7 @@ class RooMath { * \frac{1-e^{i(-n\pi+\tau_m z)}}{n\pi - \tau_m z} * \right) - a_0 \frac{1-e^{i \tau_m z}}{z} * \right) @f] - * + * * The coefficients @f$a_b@f$ are given by: * * @f[ a_n=\frac{2\sqrt{\pi}}{\tau_m} @@ -86,7 +86,7 @@ class RooMath { * fast than the old CERNLIB implementation and offers better accuracy. * * For large @f$|z|@f$, the familiar continued fraction approximation - * + * * @f[ w(z)=\frac{-iz/\sqrt{\pi}}{-z^2+\frac{1/2}{1+\frac{2/2}{-z^2 + * \frac{3/2}{1+\frac{4/2}{-z^2+\frac{5/2}{1+\frac{6/2}{-z^2+\frac{7/2 * }{1+\frac{8/2}{-z^2+\frac{9/2}{1+\ldots}}}}}}}}}} @f] @@ -122,7 +122,7 @@ class RooMath { * a factor 280 smaller than the old interpolation/table lookup routine). * * For large @f$|z|@f$, the familiar continued fraction approximation - * + * * @f[ w(z)=\frac{-iz/\sqrt{\pi}}{-z^2+\frac{1/2}{1+\frac{2/2}{-z^2 + * \frac{3/2}{1+\ldots}}}} @f] * diff --git a/roofit/batchcompute/inc/RunContext.h b/roofit/batchcompute/inc/RunContext.h index 8d3dd13ec1aa0..37db208acbf4c 100644 --- a/roofit/batchcompute/inc/RunContext.h +++ b/roofit/batchcompute/inc/RunContext.h @@ -56,8 +56,8 @@ struct RunContext { std::map> ownedMemory; std::map ownedMemoryCuda; - const char* rangeName{nullptr}; /// If evaluation should only occur in a range, the range name can be passed here. - std::vector logProbabilities; /// Possibility to register log probabilities. + const char* rangeName{nullptr}; ///< If evaluation should only occur in a range, the range name can be passed here. + std::vector logProbabilities; ///< Possibility to register log probabilities. }; }