]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSsegmentation.cxx
Eliminated hardwired names. The layed detector type ID is stored in TGeo and can
[u/mrichter/AliRoot.git] / ITS / AliITSsegmentation.cxx
index 10abd1c45556f4278da63f1edd7ea49edbbac152..fb62bda72976168ec9319149673d90760c374dca 100644 (file)
@@ -18,12 +18,10 @@ AliITSsegmentation::AliITSsegmentation():
 fDx(0),
 fDz(0),
 fDy(0),
-fGeom(0),
 fCorr(0){
   // Default constructor
  
 }
-
 //_____________________________________________________________
 AliITSsegmentation::~AliITSsegmentation(){
   // destructor
@@ -36,7 +34,6 @@ void AliITSsegmentation::Copy(TObject &obj) const {
   ((AliITSsegmentation& ) obj).fDz      = fDz;
   ((AliITSsegmentation& ) obj).fDx      = fDx;
   ((AliITSsegmentation& ) obj).fDy      = fDy;
-  ((AliITSsegmentation& ) obj).fGeom    = fGeom; // copy only the pointer
   if(fCorr){
     ((AliITSsegmentation& ) obj).fCorr    = new TF1(*fCorr); // make a proper copy
   }
@@ -59,7 +56,6 @@ AliITSsegmentation::AliITSsegmentation(const AliITSsegmentation &source):
 fDx(0),
 fDz(0),
 fDy(0),
-fGeom(0),
 fCorr(0){
     // copy constructor
   source.Copy(*this);