]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONGeometryDetElement.cxx
Add comments for Doxygen
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometryDetElement.cxx
index e94829f403a98b86ea2ab85cb5449e93468af881..c4c7e2ed466f3b24cc2e1717c0c8f26a026e5212 100644 (file)
 ClassImp(AliMUONGeometryDetElement)
 /// \endcond
 
+const TString AliMUONGeometryDetElement::fgkDENamePrefix = "DE";
+
 //______________________________________________________________________________
 AliMUONGeometryDetElement::AliMUONGeometryDetElement(
                                         Int_t detElemId,
                                         const TString& volumePath)
  : TObject(),
+   fDEName(),
    fVolumePath(volumePath),
    fLocalTransformation(0),
    fGlobalTransformation(0)
@@ -46,11 +49,15 @@ AliMUONGeometryDetElement::AliMUONGeometryDetElement(
 /// Standard constructor
 
   SetUniqueID(detElemId);
+  
+  fDEName = fgkDENamePrefix;
+  fDEName += detElemId;
 }
 
 //______________________________________________________________________________
 AliMUONGeometryDetElement::AliMUONGeometryDetElement()
  : TObject(),
+   fDEName(),
    fVolumePath(),
    fLocalTransformation(0),
    fGlobalTransformation(0)