]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSsegmentation.cxx
Corrected name of the SPD fast-or minimum bias trigger input (Annalisa)
[u/mrichter/AliRoot.git] / ITS / AliITSsegmentation.cxx
index 44d71cb0697939248291ba00a0888628b64ca531..fb62bda72976168ec9319149673d90760c374dca 100644 (file)
@@ -18,23 +18,10 @@ AliITSsegmentation::AliITSsegmentation():
 fDx(0),
 fDz(0),
 fDy(0),
-fGeom(0),
 fCorr(0){
   // Default constructor
  
 }
-//_____________________________________________________________
-AliITSsegmentation::AliITSsegmentation(AliITSgeom* geom):
-fDx(0),
-fDz(0),
-fDy(0),
-fGeom(0),
-fCorr(0){
-  // Default constructor
-   fGeom=geom;
-}
-
-
 //_____________________________________________________________
 AliITSsegmentation::~AliITSsegmentation(){
   // destructor
@@ -47,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
   }
@@ -70,7 +56,6 @@ AliITSsegmentation::AliITSsegmentation(const AliITSsegmentation &source):
 fDx(0),
 fDz(0),
 fDy(0),
-fGeom(0),
 fCorr(0){
     // copy constructor
   source.Copy(*this);