From c4a03891b02f83c76e38090ab60b0bccc803d99c Mon Sep 17 00:00:00 2001 From: alibrary Date: Fri, 25 Feb 2005 05:12:08 +0000 Subject: [PATCH] Print is const in Root --- RICH/AliRICHParam.cxx | 2 +- RICH/AliRICHParam.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RICH/AliRICHParam.cxx b/RICH/AliRICHParam.cxx index 4145510e3ba..c13575596b4 100644 --- a/RICH/AliRICHParam.cxx +++ b/RICH/AliRICHParam.cxx @@ -36,7 +36,7 @@ Float_t AliRICHParam::fgSigmaThMean =1.132; //QDC Float_t AliRICHParam::fgSigmaThSpread =0.035; // //__________________________________________________________________________________________________ -void AliRICHParam::Print(Option_t*) +void AliRICHParam::Print(Option_t*) const { AliInfo(Form("Pads in chamber (%3i,%3i) in sector (%2i,%2i)",NpadsX(),NpadsY(),NpadsXsec(),NpadsYsec())); AliInfo(Form("Resolve clusters %i sagita %i Radio source %i Aerogel %i TestBeam %i", diff --git a/RICH/AliRICHParam.h b/RICH/AliRICHParam.h index 2fd04f12b9a..a8418171824 100644 --- a/RICH/AliRICHParam.h +++ b/RICH/AliRICHParam.h @@ -35,7 +35,7 @@ public: AliRICHParam():TObject(),fpChambers(0) {CreateChambers();} virtual ~AliRICHParam() {delete fpChambers;} //test methodes - void Print(const Option_t *opt=""); //print current parametrization + void Print(Option_t *opt="") const; //print current parametrization void Test() {TestSeg();TestTrans();TestResp();} //test all groups of methodes void TestResp(); //test the response group of methodes void TestSeg(); //test the segmentation group of methodes -- 2.43.5