]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RALICE/AliCalorimeter.cxx
Hole() method needed by TRD to find out wheter frame has holes.
[u/mrichter/AliRoot.git] / RALICE / AliCalorimeter.cxx
index 42d179be0f78a90d357a995a0d920e01e01cf295..bc7218ae0fa55a1f047ff2781f2cdf41a376f5c1 100644 (file)
@@ -72,6 +72,7 @@ AliCalorimeter::AliCalorimeter()
  fAttributes=0;
  fGains=0;
  fPositions=0;
+ fName=" ";
 }
 ///////////////////////////////////////////////////////////////////////////
 AliCalorimeter::~AliCalorimeter()
@@ -183,6 +184,8 @@ AliCalorimeter::AliCalorimeter(Int_t nrow,Int_t ncol)
 
  fNvetos=0;
  fVetos=0;
+
+ fName=" ";
 }
 ///////////////////////////////////////////////////////////////////////////
 Int_t AliCalorimeter::GetNrows()
@@ -1094,3 +1097,13 @@ AliSignal* AliCalorimeter::GetVetoSignal(Int_t i)
  }
 }
 ///////////////////////////////////////////////////////////////////////////
+void AliCalorimeter::SetName(TString name)
+{
+ fName=name;
+}
+///////////////////////////////////////////////////////////////////////////
+TString AliCalorimeter::GetName()
+{
+ return fName;
+}
+///////////////////////////////////////////////////////////////////////////