]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Missing comment lines added in SetName() and GetName() of AliCalorimeter and AliSignal.
authornick <nick@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 14 Feb 2002 14:22:37 +0000 (14:22 +0000)
committernick <nick@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 14 Feb 2002 14:22:37 +0000 (14:22 +0000)
RALICE/AliCalorimeter.cxx
RALICE/AliSignal.cxx
RALICE/history.txt

index 7ab5b1f36e99f6c25555f9f1216aabbb443844d8..2e7cc048ae38f18f3ea7cad5350dcdbe2fe182f0 100644 (file)
@@ -1102,11 +1102,13 @@ AliSignal* AliCalorimeter::GetVetoSignal(Int_t i)
 ///////////////////////////////////////////////////////////////////////////
 void AliCalorimeter::SetName(TString name)
 {
+// Set the name of the calorimeter system.
  fName=name;
 }
 ///////////////////////////////////////////////////////////////////////////
 TString AliCalorimeter::GetName()
 {
+// Provide the name of the calorimeter system.
  return fName;
 }
 ///////////////////////////////////////////////////////////////////////////
index 7480e8caa2c444c8677aed2fce0a6e330aeabb85..ce35e9325472be6dfb9bf00179cb29f484373540 100644 (file)
@@ -249,11 +249,13 @@ void AliSignal::Info(TString f)
 ///////////////////////////////////////////////////////////////////////////
 void AliSignal::SetName(TString name)
 {
+// Set the name tag to indicate the kind of signal.
  fName=name;
 }
 ///////////////////////////////////////////////////////////////////////////
 TString AliSignal::GetName()
 {
+// Provide the name tag indicating the kind of signal.
  return fName;
 }
 ///////////////////////////////////////////////////////////////////////////
index 1ce9befd384d6603408c3c746aec45259736127b..c621e474ae99052f7c016d2922d8c524e0357dd0 100644 (file)
                 in RALICELinkDef.h. Note that the new schema evolution only works
                 correctly for ROOT version 3.02/07 and later.
 14-feb-2002 NvE Support for name tag introduced in AliSignal to indicate the kind of signal.
+                Missing comment lines added in SetName() and GetName() of AliCalorimeter and AliSignal.