From 5e10b50e44a65c4bfa335fc004b6f6466fabd665 Mon Sep 17 00:00:00 2001 From: Olivier Couet <olivier.couet@cern.ch> Date: Thu, 11 Jul 2019 15:52:59 +0200 Subject: [PATCH] Doxygen formating Typos --- math/mlp/src/TMLPAnalyzer.cxx | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/math/mlp/src/TMLPAnalyzer.cxx b/math/mlp/src/TMLPAnalyzer.cxx index a8f1d0af7c1..f8940c1223a 100644 --- a/math/mlp/src/TMLPAnalyzer.cxx +++ b/math/mlp/src/TMLPAnalyzer.cxx @@ -9,16 +9,14 @@ * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ -/////////////////////////////////////////////////////////////////////////// -// -// TMLPAnalyzer -// -// This utility class contains a set of tests usefull when developing -// a neural network. -// It allows you to check for unneeded variables, and to control -// the network structure. -// -/////////////////////////////////////////////////////////////////////////// +/** \class TMLPAnalyzer + +This utility class contains a set of tests usefull when developing +a neural network. +It allows you to check for unneeded variables, and to control +the network structure. + +*/ #include "TROOT.h" #include "TSynapse.h" @@ -166,7 +164,7 @@ void TMLPAnalyzer::CheckNetwork() } //////////////////////////////////////////////////////////////////////////////// -/// Collect information about what is usefull in the network. +/// Collect information about what is useful in the network. /// This method has to be called first when analyzing a network. /// Fills the two analysis trees. @@ -261,7 +259,7 @@ void TMLPAnalyzer::GatherInformations() params[i] -= 2*shift*rms[i]; v2 = fNetwork->Evaluate(l,params); diff += (v1-v2)*(v1-v2); - // reset to original vealue + // reset to original value params[i] += shift*rms[i]; } diff = TMath::Sqrt(diff); -- GitLab