]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONGeometryTransformer.cxx
Update of ACORDE-QA-Raw data histograms (now they go from -0.5 to 59.5)
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometryTransformer.cxx
index 2fb01fa3f19175a1f74bf10ae40cef66a782d5e4..8979695c45ac34e8a723baf11e0ce6e3aa441871 100644 (file)
  **************************************************************************/
 
 // $Id$
-//
+
+//-----------------------------------------------------------------------------
 // Class AliMUONGeometryTransformer
 // ----------------------------
 // Top container class for geometry transformations
-//
 // Author: Ivana Hrivnacova, IPN Orsay
-
-#include <sstream>
-
-#include <Riostream.h>
-#include <TObjArray.h>
-#include <TSystem.h>
-
-#include "AliLog.h"
+//-----------------------------------------------------------------------------
 
 #include "AliMUONGeometryTransformer.h"
 #include "AliMUONGeometryModuleTransformer.h"
 #include "AliMUONGeometryDetElement.h"
-#include "AliMUONGeometryDEIndexing.h"
-#include "AliMUONGeometryStore.h"
+#include "AliMUONGeometryBuilder.h"
+
+#include "AliMpDEManager.h"
+#include "AliMpConstants.h"
+#include "AliMpExMap.h"
+#include "AliMpCDB.h"
+#include "AliMpArea.h"
+#include <float.h>
+#include "AliMpVPadIterator.h"
+#include "AliMpPad.h"
+#include "AliMpDEIterator.h"
+#include <TVector2.h>
+#include "AliMpVSegmentation.h"
+#include "AliMpSegmentation.h"
+#include "AliMpExMapIterator.h"
+#include "AliLog.h"
+#include "AliAlignObjMatrix.h"
+#include "AliAlignObj.h"
 
+#include <Riostream.h>
+#include <TSystem.h>
+#include <TClonesArray.h>
+#include <TGeoManager.h>
+#include <TGeoPhysicalNode.h>
+#include <TFile.h>
+#include <TString.h>
 
+#include <sstream>
+
+/// \cond CLASSIMP
 ClassImp(AliMUONGeometryTransformer)
+/// \endcond
+
+const TString  AliMUONGeometryTransformer::fgkDefaultDetectorName = "MUON";
  
 //______________________________________________________________________________
-AliMUONGeometryTransformer::AliMUONGeometryTransformer(Bool_t isOwner)
+AliMUONGeometryTransformer::AliMUONGeometryTransformer()
+
   : TObject(),
-    fModuleTransformers(0)
+    fDetectorName(fgkDefaultDetectorName),
+    fModuleTransformers(0),
+    fMisAlignArray(0),
+    fDEAreas(0x0)
 {
 /// Standard constructor
 
   // Create array for geometry modules
-  fModuleTransformers = new TObjArray();
-  fModuleTransformers->SetOwner(isOwner);
+  fModuleTransformers = new TObjArray(100);
+  fModuleTransformers->SetOwner(true);
 }
 
 //______________________________________________________________________________
-AliMUONGeometryTransformer::AliMUONGeometryTransformer() 
+AliMUONGeometryTransformer::AliMUONGeometryTransformer(TRootIOCtor* /*ioCtor*/
   : TObject(),
-    fModuleTransformers(0)
+    fDetectorName(),
+    fModuleTransformers(0),
+    fMisAlignArray(0),
+    fDEAreas(0x0)
 {
 /// Default constructor
 } 
 
-//______________________________________________________________________________
-AliMUONGeometryTransformer::AliMUONGeometryTransformer(
-                                   const AliMUONGeometryTransformer& right) 
-  : TObject(right) 
-{  
-/// Copy constructor (not implemented)
-
-  AliFatal("Copy constructor not provided.");
-}
-
 //______________________________________________________________________________
 AliMUONGeometryTransformer::~AliMUONGeometryTransformer()
 {
 /// Destructor
 
   delete fModuleTransformers;
+  delete fMisAlignArray;
+  delete fDEAreas;
 }
 
-//______________________________________________________________________________
-AliMUONGeometryTransformer& 
-AliMUONGeometryTransformer::operator=(const AliMUONGeometryTransformer& right)
+//
+// private methods
+//
+
+
+//_____________________________________________________________________________
+AliMpArea*
+AliMUONGeometryTransformer::GetDEArea(Int_t detElemId) const
 {
-/// Assignement operator (not implemented)
+  /// Get area (in global coordinates) covered by a given detection element
+  if (!fDEAreas)
+  {
+    CreateDEAreas();
+  }
+  return static_cast<AliMpArea*>(fDEAreas->GetValue(detElemId));
+}
+
+//_____________________________________________________________________________
+void
+AliMUONGeometryTransformer::CreateDEAreas() const
+{
+  /// Create DE areas
+  
+  fDEAreas = new AliMpExMap;
+  
+  AliMpDEIterator it;
+
+  it.First();
 
-  // check assignement to self
-  if (this == &right) return *this;
+  /// Generate the DE areas in global coordinates
 
-  AliFatal("Assignement operator not provided.");
+  while ( !it.IsDone() )
+  {
+    Int_t detElemId = it.CurrentDEId();
     
-  return *this;  
-}    
+    if ( !HasDE(detElemId) ) continue;
+    
+    const AliMpVSegmentation* seg = AliMpSegmentation::Instance()->GetMpSegmentation(detElemId,AliMp::kCath0);
+    
+    Double_t xg,yg,zg;
+    
+    AliMp::StationType stationType = AliMpDEManager::GetStationType(detElemId);
+    
+    Double_t xl(0.0), yl(0.0), zl(0.0);
+    Double_t dx(seg->GetDimensionX());
+    Double_t dy(seg->GetDimensionY());
+    
+    if ( stationType == AliMp::kStation12 ) 
+    {
+      Double_t xmin(FLT_MAX);
+      Double_t xmax(-FLT_MAX);
+      Double_t ymin(FLT_MAX);
+      Double_t ymax(-FLT_MAX);
+      
+      for ( Int_t icathode = 0; icathode < 2; ++icathode ) 
+      {
+        const AliMpVSegmentation* cathode 
+        = AliMpSegmentation::Instance()->GetMpSegmentation(detElemId,AliMp::GetCathodType(icathode));
+        
+        AliMpVPadIterator* itp = cathode->CreateIterator();
+        
+        itp->First();
+        
+        while ( !itp->IsDone() ) 
+        {
+          AliMpPad pad = itp->CurrentItem();
+          AliMpArea a(pad.GetPositionX(),pad.GetPositionY(),
+                      pad.GetDimensionX(), pad.GetDimensionY());
+          xmin = TMath::Min(xmin,a.LeftBorder());
+          xmax = TMath::Max(xmax,a.RightBorder());
+          ymin = TMath::Min(ymin,a.DownBorder());
+          ymax = TMath::Max(ymax,a.UpBorder());
+          itp->Next();
+        }
+        
+        delete itp;
+      }
+      
+      xl = (xmin+xmax)/2.0;
+      yl = (ymin+ymax)/2.0;
+      dx = (xmax-xmin)/2.0;
+      dy = (ymax-ymin)/2.0;
+      
+      Local2Global(detElemId,xl,yl,zl,xg,yg,zg);
+    }
+    else
+    {
+      Local2Global(detElemId,xl,yl,zl,xg,yg,zg);
+    }
+    
+    fDEAreas->Add(detElemId,new AliMpArea(xg,yg,dx,dy));
+    
+    it.Next();
+  }
+}
 
-//
-// private methods
-//
+//_____________________________________________________________________________
+Bool_t AliMUONGeometryTransformer::LoadMapping() const
+{
+/// Load mapping from CDB
+
+  if ( ! AliMpCDB::LoadMpSegmentation() ) 
+  {
+    AliFatal("Could not access mapping from OCDB !");
+    return false;
+  }
+  
+  return true;
+}  
 
 //_____________________________________________________________________________
 AliMUONGeometryModuleTransformer* 
@@ -112,28 +225,13 @@ AliMUONGeometryTransformer::GetModuleTransformerNonConst(
   return (AliMUONGeometryModuleTransformer*) fModuleTransformers->At(index);
 }    
 
-//______________________________________________________________________________
-TString  AliMUONGeometryTransformer::ComposePath(const TString& volName, 
-                                                 Int_t copyNo) const
-{
-// Compose path from given volName and copyNo
-// ---
-
-  TString path(volName);
-  path += ".";
-  path += copyNo;
-  
-  return path;
-}  
-
 //______________________________________________________________________________
 TGeoHMatrix AliMUONGeometryTransformer::GetTransform(
                   Double_t x, Double_t y, Double_t z,
                  Double_t a1, Double_t a2, Double_t a3, 
                  Double_t a4, Double_t a5, Double_t a6) const
 {                
-// Builds the transformation from the given parameters
-// ---
+/// Build the transformation from the given parameters
 
   // Compose transform
   return TGeoCombiTrans(TGeoTranslation(x, y, z), 
@@ -142,24 +240,19 @@ TGeoHMatrix AliMUONGeometryTransformer::GetTransform(
 
 
 //______________________________________________________________________________
-void AliMUONGeometryTransformer::FillData(Int_t moduleId,
+void AliMUONGeometryTransformer::FillModuleTransform(Int_t moduleId,
                   Double_t x, Double_t y, Double_t z,
                  Double_t a1, Double_t a2, Double_t a3,
                  Double_t a4, Double_t a5, Double_t a6) 
 {
-// Fill the transformation of the module.
-// ---
-
-  // Get/Create geometry module parametrisation
-  moduleId--;
-      // Modules numbers in the file are starting from 1
+/// Fill the transformation of the module.
 
   AliMUONGeometryModuleTransformer* moduleTransformer
     = GetModuleTransformerNonConst(moduleId, false);
 
   if ( !moduleTransformer) {
-    moduleTransformer = new AliMUONGeometryModuleTransformer(moduleId);
-    AddModuleTransformer(moduleTransformer);
+    AliErrorStream() 
+      << "Module " << moduleId << " has not volume path defined." << endl;
   }  
       
   // Build the transformation from the parameters
@@ -167,58 +260,65 @@ void AliMUONGeometryTransformer::FillData(Int_t moduleId,
     = GetTransform(x, y, z, a1, a2, a3, a4, a5, a6);
       
   moduleTransformer->SetTransformation(transform);
-
 }                 
   
 //______________________________________________________________________________
-void AliMUONGeometryTransformer::FillData(
-                  Int_t detElemId, const TString& volName, Int_t copyNo,
+void AliMUONGeometryTransformer::FillDetElemTransform(
+                  Int_t detElemId, 
                   Double_t x, Double_t y, Double_t z,
                  Double_t a1, Double_t a2, Double_t a3,
                  Double_t a4, Double_t a5, Double_t a6) 
 {
-// Fill the transformation of the detection element.
-// ---
+/// Fill the transformation of the detection element.
 
   // Module Id
-  Int_t moduleId 
-    = AliMUONGeometryDEIndexing::GetModuleId(detElemId);
+  Int_t moduleId = AliMpDEManager::GetGeomModuleId(detElemId);
 
-  // Compose path
-  TString path = ComposePath(volName, copyNo);
-  
+  // Get module transformer
+  const AliMUONGeometryModuleTransformer* kModuleTransformer
+    = GetModuleTransformer(moduleId);
+
+  if ( ! kModuleTransformer ) {
+    AliFatal(Form("Module transformer not defined, detElemId: %d", detElemId));
+    return;  
+  }  
+
+  // Get detection element
+  AliMUONGeometryDetElement* detElement 
+    = kModuleTransformer->GetDetElement(detElemId);     
+
+  if ( ! detElement ) {
+    AliFatal(Form("Det element %d has not volume path defined", detElemId));
+    return;  
+  }  
+      
   // Build the transformation from the parameters
-  TGeoHMatrix transform 
+  TGeoHMatrix localTransform 
     = GetTransform(x, y, z, a1, a2, a3, a4, a5, a6);
+  detElement->SetLocalTransformation(localTransform); 
    
-  // Compose TGeoCombiTrans
-  TGeoCombiTrans newCombiTransform(transform);
-    
-  // Get detection element store
-  AliMUONGeometryStore* detElements = 
-    GetModuleTransformer(moduleId)->GetDetElementStore();     
-
-  // Add detection element
-  detElements->Add(detElemId,
-     new AliMUONGeometryDetElement(detElemId, path, newCombiTransform)); 
+  // Compute global transformation
+  TGeoHMatrix globalTransform 
+    = AliMUONGeometryBuilder::Multiply( 
+                                  *kModuleTransformer->GetTransformation(),
+                                 localTransform );
+  detElement->SetGlobalTransformation(globalTransform);
 }                 
-  
+
 //______________________________________________________________________________
-TString  AliMUONGeometryTransformer::ReadData1(ifstream& in)
+TString  AliMUONGeometryTransformer::ReadModuleTransforms(ifstream& in)
 {
-// Reads and fills modules transformations from a file
-// Returns true, if reading finished correctly.
-// ---
+/// Read and fill modules transformations from the stream.
+/// Return true, if reading finished correctly.
 
-  TString key("CH");
-  while ( key == TString("CH") ) {
-    Int_t id, n;
+  TString key(AliMUONGeometryModuleTransformer::GetModuleNamePrefix());
+  while ( key == AliMUONGeometryModuleTransformer::GetModuleNamePrefix() ) {
+    Int_t id;
     Double_t  x, y, z;
     Double_t  a1, a2, a3, a4, a5, a6;
     TString dummy;
   
     in >> id;
-    in >> n;
     in >> dummy;
     in >> x;
     in >> y;
@@ -231,14 +331,14 @@ TString  AliMUONGeometryTransformer::ReadData1(ifstream& in)
     in >> a5; 
     in >> a6; 
 
-    //cout << "id="     << id << "  "
+    //cout << "moduleId="     << id << "  "
     //          << "position= " << x << ", " << y << ", " << z << "  "
     //  << "rotation= " << a1 << ", " << a2 << ", " << a3  << ", "
     //                  << a4 << ", " << a5 << ", " << a6 
     //  << endl;   
         
     // Fill data
-    FillData(id, x, y, z, a1, a2, a3, a4, a5, a6);
+    FillModuleTransform(id, x, y, z, a1, a2, a3, a4, a5, a6);
     
     // Go to next line
     in >> key;
@@ -248,26 +348,21 @@ TString  AliMUONGeometryTransformer::ReadData1(ifstream& in)
 }
 
 //______________________________________________________________________________
-TString  AliMUONGeometryTransformer::ReadData2(ifstream& in)
+TString  AliMUONGeometryTransformer::ReadDetElemTransforms(ifstream& in)
 {
-// Reads detection elements transformations from a file
-// Returns true, if reading finished correctly.
-// ---
+/// Read detection elements transformations from the stream.
+/// Return true, if reading finished correctly.
 
-  TString key("DE");
-  while ( key == TString("DE") ) {
+  TString key(AliMUONGeometryDetElement::GetDENamePrefix());
+  while ( key == AliMUONGeometryDetElement::GetDENamePrefix() ) {
 
     // Input data
     Int_t detElemId;
-    TString   volumeName;
-    Int_t     copyNo;
     Double_t  x, y, z;
     Double_t  a1, a2, a3, a4, a5, a6;
     TString dummy;
   
     in >> detElemId;
-    in >> volumeName;
-    in >> copyNo;
     in >> dummy;
     in >> x;
     in >> y;
@@ -281,15 +376,13 @@ TString  AliMUONGeometryTransformer::ReadData2(ifstream& in)
     in >> a6; 
 
     //cout << "detElemId=" << detElemId << "  "
-    //     << "volume=" << volumeName << "  "
-    //     << "copyNo=" << copyNo << "  "
     //     << "position= " << x << ", " << y << ", " << z << "  "
     //     << "rotation= " << a1 << ", " << a2 << ", " << a3  << ", "
-    //                  << a4 << ", " << a5 << ", " << a6 
+    //                    << a4 << ", " << a5 << ", " << a6 
     //     << endl;   
         
     // Fill data
-    FillData(detElemId, volumeName, copyNo, x, y, z, a1, a2, a3, a4, a5, a6);   
+    FillDetElemTransform(detElemId, x, y, z, a1, a2, a3, a4, a5, a6);   
     
     // Go to next line
     in >> key;
@@ -298,12 +391,47 @@ TString  AliMUONGeometryTransformer::ReadData2(ifstream& in)
   return key;
 }
 
+//______________________________________________________________________________
+Bool_t  
+AliMUONGeometryTransformer::ReadTransformations(const TString& fileName)
+{
+/// Read transformations from a file.
+/// Return true, if reading finished correctly.
+
+  // File path
+  TString filePath = gSystem->Getenv("ALICE_ROOT");
+  filePath += "/MUON/data/";
+  filePath += fileName;
+  
+  // Open input file
+  ifstream in(filePath, ios::in);
+  if (!in) {
+    cerr << filePath << endl;  
+    AliFatal("File not found.");
+    return false;
+  }
+
+  TString key;
+  in >> key;
+  while ( !in.eof() ) {
+    if ( key == AliMUONGeometryModuleTransformer::GetModuleNamePrefix() ) 
+      key = ReadModuleTransforms(in);
+    else if ( key == AliMUONGeometryDetElement::GetDENamePrefix() )
+      key = ReadDetElemTransforms(in);
+    else {
+      AliFatal(Form("%s key not recognized",  key.Data()));
+      return false;
+    }
+  }     
+
+  return true;
+}
+
 //______________________________________________________________________________
 void AliMUONGeometryTransformer::WriteTransform(ofstream& out,
-                                   const TGeoCombiTrans* transform) const
+                                   const TGeoMatrix* transform) const
 {
-// Writes the transformations 
-// ---
+/// Write given transformation 
 
   out << "   pos: ";
   const Double_t* xyz = transform->GetTranslation();
@@ -327,20 +455,19 @@ void AliMUONGeometryTransformer::WriteTransform(ofstream& out,
 }
 
 //______________________________________________________________________________
-void AliMUONGeometryTransformer::WriteData1(ofstream& out) const
+void AliMUONGeometryTransformer::WriteModuleTransforms(ofstream& out) const
 {
-// Writes modules transformations
-// ---
+/// Write module transformations for all module transformers
 
   for (Int_t i=0; i<fModuleTransformers->GetEntriesFast(); i++) {
     AliMUONGeometryModuleTransformer* moduleTransformer 
       = (AliMUONGeometryModuleTransformer*)fModuleTransformers->At(i);
-    const TGeoCombiTrans* transform 
+    const TGeoMatrix* transform 
       = moduleTransformer->GetTransformation();    
 
-    out << "CH " 
-        << setw(4) << moduleTransformer->GetModuleId() + 1 << "  "
-        << setw(4) << moduleTransformer->GetDetElementStore()->GetNofEntries() << "  ";
+    // Write data on out
+    out << AliMUONGeometryModuleTransformer::GetModuleNamePrefix() << " " 
+        << setw(4) << moduleTransformer->GetModuleId();
     
     WriteTransform(out, transform);
   }
@@ -348,38 +475,25 @@ void AliMUONGeometryTransformer::WriteData1(ofstream& out) const
 }
 
 //______________________________________________________________________________
-void AliMUONGeometryTransformer::WriteData2(ofstream& out) const
+void AliMUONGeometryTransformer::WriteDetElemTransforms(ofstream& out) const
 {
-// Writes detection elements (envelopes) transformations
-// ---
-
+/// Write detection element transformations for all detection elements in all 
+/// module transformers
 
   for (Int_t i=0; i<fModuleTransformers->GetEntriesFast(); i++) {
     AliMUONGeometryModuleTransformer* moduleTransformer 
       = (AliMUONGeometryModuleTransformer*)fModuleTransformers->At(i);
-    AliMUONGeometryStore* detElements 
-      = moduleTransformer->GetDetElementStore();    
-
-    for (Int_t j=0; j<detElements->GetNofEntries(); j++) {
-      AliMUONGeometryDetElement* detElement
-        = (AliMUONGeometryDetElement*)detElements->GetEntry(j);
-      const TGeoCombiTrans* transform 
+    AliMpExMap* detElements = moduleTransformer->GetDetElementStore();    
+    TIter next(detElements->CreateIterator());
+    AliMUONGeometryDetElement* detElement;
+    while ( ( detElement = static_cast<AliMUONGeometryDetElement*>(next()) ) )
+    {
+      const TGeoMatrix* transform 
         = detElement->GetLocalTransformation(); 
        
-      // Get volume name & copy number from aligned volume
-      string volCopyNo = detElement->GetAlignedVolume().Data();
-      std::string::size_type first = volCopyNo.find('.');
-      std::string volName = volCopyNo.substr(0, first);
-      std::string copyNoStr = volCopyNo.substr(first+1, volCopyNo.length());
-      std::istringstream in(copyNoStr);
-      Int_t copyNo;
-      in >> copyNo;
-      
       // Write data on out
-      out << "DE " 
-          << setw(4) << detElement->GetId() << "    " 
-          << volName << " "
-         << setw(4) << copyNo;
+      out << AliMUONGeometryDetElement::GetDENamePrefix() << " " 
+          << setw(4) << detElement->GetId();
      
       WriteTransform(out, transform);
     }
@@ -387,54 +501,130 @@ void AliMUONGeometryTransformer::WriteData2(ofstream& out) const
   }     
 }
 
+//______________________________________________________________________________
+TString AliMUONGeometryTransformer::GetModuleSymName(Int_t moduleId) const
+{
+/// Return the module symbolic name (use for alignment)
+
+  return "/" + fDetectorName + "/" 
+             + AliMUONGeometryModuleTransformer::GetModuleName(moduleId);
+}  
+
+//______________________________________________________________________________
+TString AliMUONGeometryTransformer::GetDESymName(Int_t detElemId) const
+{
+/// Return the detection element symbolic name (used for alignment)
+
+  // Module Id
+  Int_t moduleId = AliMpDEManager::GetGeomModuleId(detElemId);
+
+  return GetModuleSymName(moduleId) + "/" 
+         + AliMUONGeometryDetElement::GetDEName(detElemId);
+}  
+
 //
 // public functions
 //
 
 //______________________________________________________________________________
 Bool_t  
-AliMUONGeometryTransformer::ReadTransformations(const TString& fileName)
+AliMUONGeometryTransformer::LoadTransformations()
 {
-// Reads transformations from a file
-// Returns true, if reading finished correctly.
-// ---
+/// Load transformations for defined modules and detection elements
+/// using AliGeomManager
 
-  // File path
-  TString filePath = gSystem->Getenv("ALICE_ROOT");
-  filePath += "/MUON/data/";
-  filePath += fileName;
-  
-  // Open input file
-  ifstream in(filePath, ios::in);
-  if (!in) {
-    cerr << filePath << endl;  
-    AliFatal("File not found.");
+  if ( ! AliGeomManager::GetGeometry() ) {
+    AliFatal("Geometry has to be laoded in AliGeomManager first.");
     return false;
-  }
+  }   
 
-  TString key;
-  in >> key;
-  while ( !in.eof() ) {
-    if (key == TString("CH")) 
-      key = ReadData1(in);
-    else if (key == TString("DE"))
-      key = ReadData2(in);
-    else {
-      AliFatal(Form("%s key not recognized",  key.Data()));
+  for (Int_t i=0; i<fModuleTransformers->GetEntriesFast(); i++) {
+    AliMUONGeometryModuleTransformer* moduleTransformer 
+      = (AliMUONGeometryModuleTransformer*)fModuleTransformers->At(i);
+
+    // Module symbolic name
+    TString symname = GetModuleSymName(moduleTransformer->GetModuleId());
+    
+    // Set matrix from physical node
+    TGeoHMatrix* matrix = AliGeomManager::GetMatrix(symname);
+    if ( ! matrix ) {
+      AliErrorStream() << "Geometry module matrix not found." << endl;
       return false;
-    }
-  }     
+    }  
+    moduleTransformer->SetTransformation(*matrix);
+    
+    // Loop over detection elements
+    AliMpExMap* detElements = moduleTransformer->GetDetElementStore();    
+    TIter next(detElements->CreateIterator());    
+    AliMUONGeometryDetElement* detElement;
+    
+    while ( ( detElement = static_cast<AliMUONGeometryDetElement*>(next()) ) )
+    {
+      // Det element  symbolic name
+      TString symnameDE = GetDESymName(detElement->GetId());
+    
+      // Set global matrix from physical node
+      TGeoHMatrix* globalMatrix = AliGeomManager::GetMatrix(symnameDE);
+      if ( ! globalMatrix ) {
+        AliErrorStream() << "Detection element matrix not found." << endl;
+        return false;
+      }  
+      detElement->SetGlobalTransformation(*globalMatrix, false);
+
+      // Set local matrix
+      TGeoHMatrix localMatrix = 
+        AliMUONGeometryBuilder::Multiply(
+          (*matrix).Inverse(), (*globalMatrix) );
+      detElement->SetLocalTransformation(localMatrix, false);
+    }  
+  } 
+  return true;    
+}  
 
-  return true;
-}
+//______________________________________________________________________________
+Bool_t  
+AliMUONGeometryTransformer::LoadGeometryData(const TString& fileName)
+{
+/// Read geometry data either from ASCII file with transformations or
+/// from root geometry file (if fileName has ".root" extension)
+
+  CreateModules();
+
+  // Get file extension
+  std::string fileName2 = fileName.Data();
+  std::string rootExt = fileName2.substr(fileName2.size()-5, fileName2.size());
+  
+  if ( rootExt != ".root" ) 
+    return ReadTransformations(fileName);
+  else  { 
+    // Load root geometry
+    AliGeomManager::LoadGeometry(fileName.Data());
+    return LoadTransformations();
+  }  
+}  
+
+//______________________________________________________________________________
+Bool_t  
+AliMUONGeometryTransformer::LoadGeometryData()
+{
+/// Load geometry data from already loaded Root geometry using AliGeomManager
+
+  if ( ! AliGeomManager::GetGeometry() ) {
+    AliErrorStream() << "Geometry has not been loaded in AliGeomManager" << endl;
+    return false;
+  }    
+
+  CreateModules();
+
+  return LoadTransformations();
+}  
 
 //______________________________________________________________________________
 Bool_t  
 AliMUONGeometryTransformer::WriteTransformations(const TString& fileName) const
 {
-// Writes transformations into a file
-// Returns true, if writing finished correctly.
-// ---
+/// Write transformations into a file.
+/// Return true, if writing finished correctly.
 
   // No writing
   // if builder is not associated with any geometry module
@@ -445,7 +635,7 @@ AliMUONGeometryTransformer::WriteTransformations(const TString& fileName) const
   filePath += "/MUON/data/";
   filePath += fileName;
   
-  // Open input file
+  // Open output file
   ofstream out(filePath, ios::out);
   if (!out) {
     cerr << filePath << endl;  
@@ -455,8 +645,42 @@ AliMUONGeometryTransformer::WriteTransformations(const TString& fileName) const
 #if !defined (__DECCXX)
   out.setf(std::ios::fixed);
 #endif
-  WriteData1(out);
-  WriteData2(out);
+  WriteModuleTransforms(out);
+  WriteDetElemTransforms(out);
+  
+  return true;
+}  
+
+//______________________________________________________________________________
+Bool_t  
+AliMUONGeometryTransformer::WriteMisAlignmentData(const TString& fileName) const
+{
+/// Write misalignment data into a file
+/// Return true, if writing finished correctly.
+
+  // No writing
+  // if builder is not associated with any geometry module
+  if ( fModuleTransformers->GetEntriesFast() == 0 ) {
+    AliWarningStream() << "No geometry modules defined." << endl;
+    return false;
+  }  
+  
+  // No writing
+  // if builder has no mis-alignment data
+  if ( ! fMisAlignArray ) {
+    AliWarningStream() << "No mis-alignment data defined." << endl;
+    return false;
+  }  
+
+  // File path
+  TString filePath = gSystem->Getenv("ALICE_ROOT");
+  filePath += "/MUON/data/";
+  filePath += fileName;
+  
+  // Write mis-alignment data in the root file
+  TFile file(fileName.Data(), "RECREATE");
+  fMisAlignArray->Write();
+  file.Close();
   
   return true;
 }  
@@ -465,12 +689,232 @@ AliMUONGeometryTransformer::WriteTransformations(const TString& fileName) const
 void AliMUONGeometryTransformer::AddModuleTransformer(
                           AliMUONGeometryModuleTransformer* moduleTransformer)
 {
-/// Add the geometrymodule to the array
+/// Add the module transformer to the array
+
+  // Expand the size if not sufficient
+  Int_t moduleId = moduleTransformer->GetModuleId();
+  if (  moduleId >= fModuleTransformers->GetSize() )
+    fModuleTransformers->Expand(moduleId+1);
 
-  fModuleTransformers->AddAt(moduleTransformer, 
-                             moduleTransformer->GetModuleId());
+  fModuleTransformers->AddAt(moduleTransformer, moduleId);
 }
 
+//_____________________________________________________________________________
+void  AliMUONGeometryTransformer::AddMisAlignModule(Int_t moduleId, 
+                                              const TGeoHMatrix& matrix)
+{
+/// Build AliAlignObjMatrix with module ID, its volumePath
+/// and the given delta transformation matrix                                        
+
+  if ( ! fMisAlignArray )
+    fMisAlignArray = new TClonesArray("AliAlignObjMatrix", 200);
+    
+  const AliMUONGeometryModuleTransformer* kTransformer 
+    = GetModuleTransformer(moduleId);
+  if ( ! kTransformer ) {
+    AliErrorStream() << "Module " << moduleId << " not found." << endl; 
+    return;
+  }   
+  
+  // Get unique align object ID
+  Int_t volId = AliGeomManager::LayerToVolUID(AliGeomManager::kMUON, moduleId); 
+
+  // Create mis align matrix
+  TClonesArray& refArray =*fMisAlignArray;
+  Int_t pos = fMisAlignArray->GetEntriesFast();
+  new (refArray[pos]) AliAlignObjMatrix(GetModuleSymName(moduleId), volId, 
+                                       const_cast<TGeoHMatrix&>(matrix),kTRUE);
+}
+
+//_____________________________________________________________________________
+void  AliMUONGeometryTransformer::AddMisAlignDetElement(Int_t detElemId, 
+                                              const TGeoHMatrix& matrix)
+{
+/// Build AliAlignObjMatrix with detection element ID, its volumePath
+/// and the given delta transformation matrix                                        
+
+  if ( ! fMisAlignArray )
+    fMisAlignArray = new TClonesArray("AliAlignObjMatrix", 200);
+
+  const AliMUONGeometryDetElement* kDetElement 
+    = GetDetElement(detElemId);
+
+  if ( ! kDetElement ) {
+    AliErrorStream() << "Det element " << detElemId << " not found." << endl; 
+    return;
+  }   
+  
+  // Get unique align object ID
+  Int_t volId = AliGeomManager::LayerToVolUID(AliGeomManager::kMUON, detElemId); 
+
+  // Create mis align matrix
+  TClonesArray& refArray =*fMisAlignArray;
+  Int_t pos = fMisAlignArray->GetEntriesFast();
+  new(refArray[pos]) AliAlignObjMatrix(GetDESymName(detElemId), volId, 
+                                      const_cast<TGeoHMatrix&>(matrix),kTRUE);
+}
+
+//______________________________________________________________________________
+void AliMUONGeometryTransformer::CreateModules()
+{
+/// Create modules and their detection elements using info from mapping;
+/// but do not fill matrices
+
+  // Load mapping as its info is used to define modules & DEs
+  LoadMapping();
+
+  if ( fModuleTransformers->GetEntriesFast() == 0 ) {
+    // Create modules only if they do not yet exist
+
+    // Loop over geometry module
+    for (Int_t moduleId = 0; moduleId < AliMpConstants::NofGeomModules(); ++moduleId ) {
+    
+      // Create geometry module transformer
+      AliMUONGeometryModuleTransformer* moduleTransformer
+        = new AliMUONGeometryModuleTransformer(moduleId);
+      AddModuleTransformer(moduleTransformer);
+    }
+  }     
+    
+  // Loop over detection elements
+  AliMpDEIterator it;
+  for ( it.First(); ! it.IsDone(); it.Next() ) {
+    
+    Int_t detElemId = it.CurrentDEId();
+    Int_t moduleId = AliMpDEManager::GetGeomModuleId(detElemId);
+
+    // Get detection element store
+    AliMpExMap* detElements = 
+      GetModuleTransformer(moduleId)->GetDetElementStore();     
+
+    // Add detection element
+    AliMUONGeometryDetElement* detElement 
+      = new AliMUONGeometryDetElement(detElemId);
+    detElements->Add(detElemId, detElement);
+  }   
+}
+
+//_____________________________________________________________________________
+void AliMUONGeometryTransformer::AddAlignableVolumes() const
+{
+/// Set symbolic names and matrices to alignable objects to TGeo
+
+  if ( ! gGeoManager ) {
+    AliWarning("TGeoManager not defined.");
+    return;
+  }  
+
+  // Modules 
+  for (Int_t i=0; i<fModuleTransformers->GetEntriesFast(); i++) {
+    AliMUONGeometryModuleTransformer* module 
+      = (AliMUONGeometryModuleTransformer*)fModuleTransformers->At(i);
+
+    // Set module symbolic name
+    TGeoPNEntry* pnEntry
+      = gGeoManager->SetAlignableEntry(GetModuleSymName(module->GetModuleId()),
+                                       module->GetVolumePath());
+    if ( ! pnEntry ) {
+      AliErrorStream() 
+        << "Volume path " << module->GetVolumePath().Data()
+        << " for geometry module " << module->GetModuleId() << " " << module
+        << " not found in geometry." << endl;
+    }
+    else {
+      // Set module matrix
+      pnEntry->SetMatrix(new TGeoHMatrix(*module->GetTransformation()));  
+       // the matrix will be deleted via TGeoManager  
+    }                                     
+
+    // Detection elements
+    AliMpExMap* detElements = module->GetDetElementStore();    
+    TIter next(detElements->CreateIterator());    
+    AliMUONGeometryDetElement* detElement;
+    
+    while ( ( detElement = static_cast<AliMUONGeometryDetElement*>(next()) ) )
+    {
+      // Set detection element symbolic name
+      TGeoPNEntry* pnEntryDE
+        = gGeoManager->SetAlignableEntry(GetDESymName(detElement->GetId()), 
+                                         detElement->GetVolumePath());
+      if ( ! pnEntryDE ) {
+        AliErrorStream() 
+          << "Volume path " 
+          << detElement->GetVolumePath().Data() 
+          << " for detection element " << detElement->GetId()
+          << " not found in geometry." << endl;
+      }
+      else {
+        // Set detection element matrix
+        pnEntryDE->SetMatrix(new TGeoHMatrix(*detElement->GetGlobalTransformation()));                                      
+         // the matrix will be deleted via TGeoManager 
+      }                                      
+    }  
+  }     
+}           
+    
+//_____________________________________________________________________________
+TClonesArray* AliMUONGeometryTransformer::CreateZeroAlignmentData() const
+{
+/// Create array with zero alignment data
+                              
+  // Create array for zero-alignment objects
+  TClonesArray* array = new TClonesArray("AliAlignObjMatrix", 200);
+  TClonesArray& refArray =*array;
+  array->SetOwner(true);
+
+  // Identity matrix
+  TGeoHMatrix matrix;
+
+  // Modules 
+  for (Int_t i=0; i<fModuleTransformers->GetEntriesFast(); i++) {
+    AliMUONGeometryModuleTransformer* module 
+      = (AliMUONGeometryModuleTransformer*)fModuleTransformers->At(i);
+
+    Int_t moduleId = module->GetModuleId();
+  
+    // Align object ID
+    Int_t volId = AliGeomManager::LayerToVolUID(AliGeomManager::kMUON, moduleId); 
+
+    // Create mis align matrix
+    Int_t pos = array->GetEntriesFast();
+    new (refArray[pos]) AliAlignObjMatrix(GetModuleSymName(moduleId), volId, matrix, kTRUE);
+  }     
+
+  // Detection elements
+  for (Int_t i=0; i<fModuleTransformers->GetEntriesFast(); i++) {
+    AliMUONGeometryModuleTransformer* moduleTransformer 
+      = (AliMUONGeometryModuleTransformer*)fModuleTransformers->At(i);
+
+    AliMpExMap* detElements = moduleTransformer->GetDetElementStore();    
+    TIter next(detElements->CreateIterator());    
+    AliMUONGeometryDetElement* detElement;
+    
+    while ( ( detElement = static_cast<AliMUONGeometryDetElement*>(next()) ) )
+    {
+      Int_t detElemId = detElement->GetId();
+  
+      // Align object ID
+      Int_t volId = AliGeomManager::LayerToVolUID(AliGeomManager::kMUON, detElemId); 
+
+      // Create mis align matrix
+      Int_t pos = array->GetEntriesFast();
+      new (refArray[pos]) AliAlignObjMatrix(GetDESymName(detElemId), volId, matrix, kTRUE);
+    }
+  }
+  
+  return array;
+}       
+
+//_____________________________________________________________________________
+void AliMUONGeometryTransformer::ClearMisAlignmentData()
+{
+/// Clear the array of misalignment data
+
+  if ( ! fMisAlignArray ) return;
+  
+  fMisAlignArray->Delete();
+}  
+                              
 //_____________________________________________________________________________
 void AliMUONGeometryTransformer::Global2Local(Int_t detElemId,
                  Float_t xg, Float_t yg, Float_t zg, 
@@ -479,7 +923,7 @@ void AliMUONGeometryTransformer::Global2Local(Int_t detElemId,
 /// Transform point from the global reference frame (ALIC)
 /// to the local reference frame of the detection element specified
 /// by detElemId.
-   
+
   const AliMUONGeometryModuleTransformer* kTransformer 
     = GetModuleTransformerByDEId(detElemId);
   
@@ -495,7 +939,7 @@ void AliMUONGeometryTransformer::Global2Local(Int_t detElemId,
 /// Transform point from the global reference frame (ALIC)
 /// to the local reference frame of the detection element specified
 /// by detElemId.
-   
+
   const AliMUONGeometryModuleTransformer* kTransformer 
     = GetModuleTransformerByDEId(detElemId);
   
@@ -537,7 +981,7 @@ void AliMUONGeometryTransformer::Local2Global(Int_t detElemId,
 const AliMUONGeometryModuleTransformer* 
 AliMUONGeometryTransformer::GetModuleTransformer(Int_t index, Bool_t warn) const
 {
-/// Return the geometry module specified by index
+/// Return the geometry module transformer specified by index
 
   return GetModuleTransformerNonConst(index, warn);
 }    
@@ -547,14 +991,28 @@ const AliMUONGeometryModuleTransformer*
 AliMUONGeometryTransformer::GetModuleTransformerByDEId(Int_t detElemId, 
                                                        Bool_t warn) const
 {
-/// Return the geometry module specified by index
+/// Return the geometry module transformer specified by detection element ID
 
   // Get module index
-  Int_t index = AliMUONGeometryDEIndexing::GetModuleId(detElemId);
+  Int_t index = AliMpDEManager::GetGeomModuleId(detElemId);
 
   return GetModuleTransformer(index, warn);
 }    
 
+//_____________________________________________________________________________
+const AliMUONGeometryDetElement* 
+AliMUONGeometryTransformer::GetDetElement(Int_t detElemId, Bool_t warn) const
+{
+/// Return detection element with given detElemId                             
+
+  const AliMUONGeometryModuleTransformer* kTransformer 
+    = GetModuleTransformerByDEId(detElemId, warn);
+    
+  if (!kTransformer) return 0;
+    
+  return kTransformer->GetDetElement(detElemId, warn); 
+}
+
 //_____________________________________________________________________________
 Bool_t  AliMUONGeometryTransformer::HasDE(Int_t detElemId) const
 {