From efea649df437185307b5ecb6e8d9cdd141390aad Mon Sep 17 00:00:00 2001
From: Stephan Hageboeck <stephan.hageboeck@cern.ch>
Date: Tue, 2 Apr 2019 10:04:32 +0200
Subject: [PATCH] [RF] Improve doxygen for HypoTestCalculator

---
 .../inc/RooStats/HypoTestCalculatorGeneric.h       | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/roofit/roostats/inc/RooStats/HypoTestCalculatorGeneric.h b/roofit/roostats/inc/RooStats/HypoTestCalculatorGeneric.h
index 327b70e8af8..209060377d3 100644
--- a/roofit/roostats/inc/RooStats/HypoTestCalculatorGeneric.h
+++ b/roofit/roostats/inc/RooStats/HypoTestCalculatorGeneric.h
@@ -55,19 +55,19 @@ namespace RooStats {
       const RooAbsData * GetData(void) const { return fData; }
       const ModelConfig* GetNullModel(void) const { return fNullModel; }
       virtual const RooArgSet* GetFitInfo() const { return NULL; }
-      // set the model for the alternate hypothesis  (S+B)
+      /// Set the model for the alternate hypothesis  (S+B)
       virtual void SetAlternateModel(const ModelConfig &altModel) { fAltModel = &altModel; }
       const ModelConfig* GetAlternateModel(void) const { return fAltModel; }
-      // Set the DataSet
+      /// Set the DataSet
       virtual void SetData(RooAbsData &data) { fData = &data; }
 
-      // Returns instance of TestStatSampler. Use to change properties of
-      // TestStatSampler, e.g. GetTestStatSampler.SetTestSize(Double_t size);
+      /// Returns instance of TestStatSampler. Use to change properties of
+      /// TestStatSampler, e.g. GetTestStatSampler.SetTestSize(Double_t size);
       TestStatSampler* GetTestStatSampler(void) const { return fTestStatSampler; }
 
-      // set this for re-using always the same toys for alternate hypothesis in
-      // case of calls at different null parameter points
-      // This is useful to get more stable bands when running the HypoTest inversion
+      /// Set this for re-using always the same toys for alternate hypothesis in
+      /// case of calls at different null parameter points
+      /// This is useful to get more stable bands when running the HypoTest inversion
       void UseSameAltToys();
 
 
-- 
GitLab