]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDgeometry.cxx
New interface of a VStore to hold hits (Laurent)
[u/mrichter/AliRoot.git] / TRD / AliTRDgeometry.cxx
index f62e2253d86f7e76ccb553424f3fc6676ac88da1..401fd25ce27186595e4723f93b0ab1af89f12b1b 100644 (file)
@@ -197,15 +197,23 @@ AliTRDgeometry::~AliTRDgeometry()
   //
 
   if (fMatrixArray) {
+    fMatrixArray->Delete();
     delete fMatrixArray;
-    fMatrixArray           = 0;
+    fMatrixArray = 0;
   }
 
   if (fMatrixCorrectionArray) {
+    fMatrixCorrectionArray->Delete();
     delete fMatrixCorrectionArray;
     fMatrixCorrectionArray = 0;
   }
 
+  if (fMatrixGeo) {
+    fMatrixGeo->Delete();
+    delete fMatrixGeo;
+    fMatrixGeo = 0;
+  }
+
 }
 
 //_____________________________________________________________________________
@@ -261,11 +269,6 @@ void AliTRDgeometry::Init()
   Float_t phi = 0.0;
   for (isect = 0; isect < fgkNsect; isect++) {
     phi = 2.0 * TMath::Pi() /  (Float_t) fgkNsect * ((Float_t) isect + 0.5);
-    fRotA11[isect] = TMath::Cos(phi);
-    fRotA12[isect] = TMath::Sin(phi);
-    fRotA21[isect] = TMath::Sin(phi);
-    fRotA22[isect] = TMath::Cos(phi);
-    phi = -1.0 * phi;
     fRotB11[isect] = TMath::Cos(phi);
     fRotB12[isect] = TMath::Sin(phi);
     fRotB21[isect] = TMath::Sin(phi);
@@ -589,10 +592,10 @@ void AliTRDgeometry::CreateGeometry(Int_t *idtmed)
       xpos  = 0.0;
       ypos  = fClength[iplan][0] + fClength[iplan][1] + fClength[iplan][2]/2.0;
       for (Int_t ic = 0; ic < icham; ic++) {
-        ypos -= fClength[iplan][ic];        
+        ypos -= fClength[iplan][ic];
       }
       ypos -= fClength[iplan][icham]/2.0;
-      zpos  = fgkVrocsm + fgkSMpltT + fgkCraH/2.0 + fgkCdrH/2.0 - fgkSheight/2.0 
+      zpos  = fgkVrocsm + fgkSMpltT + fgkCraH/2.0 + fgkCdrH/2.0 - fgkSheight/2.0
             + iplan * (fgkCH + fgkVspace);
       // The lower aluminum frame, radiator + drift region
       sprintf(cTagV,"UA%02d",iDet);      
@@ -1045,10 +1048,10 @@ void AliTRDgeometry::CreateServices(Int_t *idtmed)
       xpos  = 0.0;
       ypos  = fClength[iplan][0] + fClength[iplan][1] + fClength[iplan][2]/2.0;
       for (Int_t ic = 0; ic < icham; ic++) {
-        ypos -= fClength[iplan][ic];        
+        ypos -= fClength[iplan][ic];
       }
       ypos -= fClength[iplan][icham]/2.0;
-      zpos  = fgkVrocsm + fgkSMpltT + fgkCH + fgkVspace/2.0 - fgkSheight/2.0 
+      zpos  = fgkVrocsm + fgkSMpltT + fgkCH + fgkVspace/2.0 - fgkSheight/2.0
             + iplan * (fgkCH + fgkVspace);
       zpos -= 0.742/2.0;
       fChamberUUorig[iDet][0] = xpos;
@@ -1145,11 +1148,11 @@ void AliTRDgeometry::CreateServices(Int_t *idtmed)
   const Float_t kMCMx    = 3.0;
   const Float_t kMCMy    = 3.0;
   const Float_t kMCMz    = 0.3;
-
+  
   const Float_t kMCMpcTh = 0.1;
-  const Float_t kMCMcuTh = 0.0215;
-  const Float_t kMCMsiTh = 0.003;
-  const Float_t kMCMcoTh = 0.1549;
+  const Float_t kMCMcuTh = 0.0025;
+  const Float_t kMCMsiTh = 0.03;
+  const Float_t kMCMcoTh = 0.04;
 
   // The mother volume for the MCMs (air)
   const Int_t kNparMCM = 3;
@@ -1322,38 +1325,18 @@ void AliTRDgeometry::GroupChamber(Int_t iplan, Int_t icham, Int_t *idtmed)
 }
 
 //_____________________________________________________________________________
-Bool_t AliTRDgeometry::Rotate(Int_t d, Double_t *pos, Double_t *rot) const
+Bool_t AliTRDgeometry::RotateBack(Int_t det, Double_t *loc, Double_t *glb) const
 {
   //
-  // Rotates all chambers in the position of sector 0 and transforms
-  // the coordinates in the ALICE restframe <pos> into the 
-  // corresponding local frame <rot>.
+  // Rotates a chambers to transform the corresponding local frame
+  // coordinates <loc> into the coordinates of the ALICE restframe <glb>.
   //
 
-  Int_t sector = GetSector(d);
+  Int_t sector = GetSector(det);
 
-  rot[0] =  pos[0] * fRotA11[sector] + pos[1] * fRotA12[sector];
-  rot[1] = -pos[0] * fRotA21[sector] + pos[1] * fRotA22[sector];
-  rot[2] =  pos[2];
-
-  return kTRUE;
-
-}
-
-//_____________________________________________________________________________
-Bool_t AliTRDgeometry::RotateBack(Int_t d, Double_t *rot, Double_t *pos) const
-{
-  //
-  // Rotates a chambers from the position of sector 0 into its
-  // original position and transforms the corresponding local frame 
-  // coordinates <rot> into the coordinates of the ALICE restframe <pos>.
-  //
-
-  Int_t sector = GetSector(d);
-
-  pos[0] =  rot[0] * fRotB11[sector] + rot[1] * fRotB12[sector];
-  pos[1] = -rot[0] * fRotB21[sector] + rot[1] * fRotB22[sector];
-  pos[2] =  rot[2];
+  glb[0] = loc[0] * fRotB11[sector] - loc[1] * fRotB12[sector];
+  glb[1] = loc[0] * fRotB21[sector] + loc[1] * fRotB22[sector];
+  glb[2] = loc[2];
 
   return kTRUE;
 
@@ -1414,6 +1397,7 @@ Int_t AliTRDgeometry::GetSector(Int_t d) const
 
 }
 
+//CL
 //_____________________________________________________________________________
 Int_t AliTRDgeometry::GetPadRowFromMCM(Int_t irob, Int_t imcm) const
 {
@@ -1429,24 +1413,13 @@ Int_t AliTRDgeometry::GetPadRowFromMCM(Int_t irob, Int_t imcm) const
 Int_t AliTRDgeometry::GetPadColFromADC(Int_t irob, Int_t imcm, Int_t iadc) const
 {
   //
-  // return which pad is connected to this adc channel.
-  //
-  // ADC channels 2 to 19 are connected directly to a pad via PASA.
-  // ADC channels 0, 1 and 20 are not connected to the PASA on this MCM.
-  // So the mapping (for MCM 0 on ROB 0 at least) is
-  //
-  // ADC channel  :   0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20
-  // Pad          :   x  x 17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0  x
-  // Func. returns:  19 18 17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0 -1
-  //
-  // Here we assume that 21 ADC channels are transmitted. Maybe it will only be
-  // 18 later on!!!
-  //
-  // This function maps also correctly the channels that cross from MCM to MCM
-  // (ADC channels 0, 1, 20).
+  // return which pad is connected to this adc channel. return -1 if it
+  // is one of the not directly connected adc channels (0, 1 20)
   //
 
-  return (17-(iadc-2)) + (imcm%fgkMCMrow)*fgkPadmax + GetRobSide(irob)*fgkColmax/2;
+  if (iadc < 2 || iadc > 19 ) return -1;
+
+  return (iadc-2) + (imcm%fgkMCMrow)*fgkPadmax + GetRobSide(irob)*fgkColmax/2;
 
 }
 
@@ -1515,13 +1488,13 @@ AliTRDgeometry *AliTRDgeometry::GetGeometry(AliRunLoader *runLoader)
   runLoader->CdGAFile();
 
   // Try from the galice.root file
-  AliTRDgeometry *geom = (AliTRDgeometry *) gDirectory->Get("TRDgeometry");
+  static AliTRDgeometry *geom = (AliTRDgeometry *) gDirectory->Get("TRDgeometry");
 
   if (!geom) {
     // If it is not in the file, try to get it from the run loader 
     if (runLoader->GetAliRun()) {
       AliTRD *trd = (AliTRD *) runLoader->GetAliRun()->GetDetector("TRD");
-      if (trd) geom = trd->GetGeometry();
+      geom = trd->GetGeometry();
     }
   }
   if (!geom) {
@@ -1538,13 +1511,7 @@ AliTRDgeometry *AliTRDgeometry::GetGeometry(AliRunLoader *runLoader)
 Bool_t AliTRDgeometry::ReadGeoMatrices()
 {
   //
-  // Read the geo matrices from the current gGeoManager for each TRD detector
-  //
-  // This fill three arrays of TGeoHMatrix, ordered by detector numbers 
-  // for fast access:
-  //   fMatrixArray:           Used for transformation local <-> global ???
-  //   fMatrixCorrectionArray: Used for transformation local <-> tracking system
-  //   fMatrixGeo:             Alignable objects
+  // Read geo matrices from current gGeoManager for each TRD sector
   //
 
   if (!gGeoManager) {
@@ -1554,13 +1521,13 @@ Bool_t AliTRDgeometry::ReadGeoMatrices()
   fMatrixArray           = new TObjArray(kNdet); 
   fMatrixCorrectionArray = new TObjArray(kNdet);
   fMatrixGeo             = new TObjArray(kNdet);
+  AliAlignObjAngles o;
 
-  for (Int_t iLayer = AliAlignObj::kTRD1; iLayer <= AliAlignObj::kTRD6; iLayer++) {
-    for (Int_t iModule = 0; iModule < AliAlignObj::LayerSize(iLayer); iModule++) {
+  for (Int_t iLayer = AliGeomManager::kTRD1; iLayer <= AliGeomManager::kTRD6; iLayer++) {
+    for (Int_t iModule = 0; iModule < AliGeomManager::LayerSize(iLayer); iModule++) {
 
-      // Find the path to the different alignable objects (ROCs)
-      UShort_t     volid   = AliAlignObj::LayerToVolUID(iLayer,iModule);
-      const char  *symname = AliAlignObj::SymName(volid);
+      UShort_t     volid   = AliGeomManager::LayerToVolUID(iLayer,iModule);
+      const char  *symname = AliGeomManager::SymName(volid);
       TGeoPNEntry *pne     = gGeoManager->GetAlignableEntry(symname);
       const char  *path    = symname;
       if (pne) {
@@ -1569,38 +1536,36 @@ Bool_t AliTRDgeometry::ReadGeoMatrices()
       if (!gGeoManager->cd(path)) {
         return kFALSE;
       }
-
-      // Get the geo matrix of the current alignable object
-      // and add it to the corresponding list
-      TGeoHMatrix *matrix   = gGeoManager->GetCurrentMatrix();
-      Int_t        iplane   = iLayer - AliAlignObj::kTRD1;
-      Int_t        isector  = iModule / Ncham();
-      Int_t        ichamber = iModule % Ncham();
-      Int_t        idet     = GetDetector(iplane,ichamber,isector);
-      fMatrixGeo->AddAt(new TGeoHMatrix(* matrix),idet);
-
-      // Construct the geo matrix for the local <-> global transformation
-      // and add it to the corresponding list.
-      // In addition to the original geo matrix also a rotation of the
-      // kind z-x-y to x-y--z is applied.
-      TGeoRotation rotMatrixA;
-      rotMatrixA.RotateY(90); 
-      rotMatrixA.RotateX(90);
-      TGeoHMatrix matrixGlobal(rotMatrixA.Inverse());
-      matrixGlobal.MultiplyLeft(matrix);
-      fMatrixArray->AddAt(new TGeoHMatrix(matrixGlobal),idet);
-
-      // Construct the geo matrix for the cluster transformation
-      // and add it to the corresponding list.
-      // In addition to the original geo matrix also a rotation of the
-      // kind x-y--z to z-x-y and a rotation by the sector angle is applied.
+      TGeoHMatrix *m         = gGeoManager->GetCurrentMatrix();
+      Int_t        iLayerTRD = iLayer - AliGeomManager::kTRD1;
+      Int_t        isector   = iModule/Ncham();
+      Int_t        ichamber  = iModule%Ncham();
+      Int_t        lid       = GetDetector(iLayerTRD,ichamber,isector);    
+
+      //
+      // Local geo system z-x-y  to x-y--z 
+      //
+      fMatrixGeo->AddAt(new TGeoHMatrix(*m),lid);
+      
+      TGeoRotation mchange; 
+      mchange.RotateY(90); 
+      mchange.RotateX(90);
+
+      TGeoHMatrix gMatrix(mchange.Inverse());
+      gMatrix.MultiplyLeft(m);
+      fMatrixArray->AddAt(new TGeoHMatrix(gMatrix),lid); 
+
+      //
+      // Cluster transformation matrix
+      //
+      TGeoHMatrix  rotMatrix(mchange.Inverse());
+      rotMatrix.MultiplyLeft(m);
       Double_t sectorAngle = 20.0 * (isector % 18) + 10.0;
-      TGeoHMatrix rotMatrixB(rotMatrixA.Inverse());
-      rotMatrixB.MultiplyLeft(matrix);
-      TGeoHMatrix rotSector;
+      TGeoHMatrix  rotSector;
       rotSector.RotateZ(sectorAngle);
-      rotMatrixB.MultiplyLeft(&rotSector);      
-      fMatrixCorrectionArray->AddAt(new TGeoHMatrix(rotMatrixB),idet);
+      rotMatrix.MultiplyLeft(&rotSector.Inverse());
+
+      fMatrixCorrectionArray->AddAt(new TGeoHMatrix(rotMatrix),lid);       
 
     }    
   }