]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/MakeMUONFullMisAlignment.C
Updated list of MUON libraries
[u/mrichter/AliRoot.git] / MUON / MakeMUONFullMisAlignment.C
index 2d599c983beb18212ab9f21588f9f75e4f890727..3cc1373a9c8943eb1e42eaa40bb21859f5bafd11 100644 (file)
@@ -1,62 +1,76 @@
-void MakeMUONFullMisAlignment(Bool_t volpaths = true,
-                              Bool_t transforms = true, 
-                              Bool_t svmaps = true)
-// Macro for generating the geometry data files:
-// (volpath.dat, transform.dat, svmap.dat)
-// and local CDB storage with full misalignment
-//
-// The generated files do not replace the existing ones
-// but have different names (with extension ".out").
-//
-//  Author: I. Hrivnacova, IPN Orsay
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+// $Id$
+
+// Macro for generating the full misalignment data.
+// The macro is trigger from AliRoot/macros/MakeAllDETsFullMisAlignment.C
 //
-{
-  // Initialize
-  gAlice->Init("$ALICE_ROOT/MUON/Config.C");
-  cout << "Init done " << endl;
+// Author: I. Hrivnacova, IPN Orsay
 
-  // Get MUON detector
-  AliMUON* muon = (AliMUON*)gAlice->GetModule("MUON");
-  if (!muon) {
-    AliFatal("MUON detector not defined.");
-    return 0;
-  }  
+#if !defined(__CINT__) || defined(__MAKECINT__)
 
-  // Get geometry builder
-  AliMUONGeometryBuilder* builder = muon ->GetGeometryBuilder();
-  
-  if (volpaths) {
-    cout << "Generating volpath file ..." << endl;
-    builder->GetTransformer()->WriteVolumePaths("volpath.dat.out");
-  }  
+#include "AliMUONGeometryTransformer.h"
+#include "AliMUONGeometryMisAligner.h"
 
-  if (transforms) {
-    cout << "Generating transformation file ..." << endl;
-    builder->GetTransformer()->WriteTransformations("transform.dat.out");
-  }  
-  
-  if (svmaps) {
-    cout << "Generating svmaps file ..." << endl;
-    builder->WriteSVMaps();
+#include "AliCDBManager.h"
+#include "AliCDBStorage.h"
+#include "AliCDBId.h"
+
+#include <TGeoManager.h>
+#include <TClonesArray.h>
+#include <TString.h>
+#include <TFile.h>
+#include <Riostream.h>
+
+#endif
+
+
+void MakeMUONFullMisAlignment()
+{
+  // Check first if geometry is loaded,
+  // if not loaded try to load it from galice.root file
+  if ( ! gGeoManager && ! TGeoManager::Import("geometry.root") )  {
+    cerr << "Loading geometry failed." << endl;
+    return;
   }  
-  
-  cout << "Generating full misalignment data in  MUON/FullMisAlignCDB/Data..." << endl;
+
+  AliMUONGeometryTransformer transformer(true);
+  transformer.ReadGeometryData("volpath.dat", gGeoManager);
   
   AliMUONGeometryMisAligner misAligner(0.0, 0.03, 0.0, 0.03, 0.0, 0.03);
   AliMUONGeometryTransformer* newTransform 
-    = misAligner.MisAlign(builder->GetTransformer(), true);
-  TClonesArray* array = newTransform->GetMisAlignmentData();
+    = misAligner.MisAlign(&transformer, true);
+  const TClonesArray* array = newTransform->GetMisAlignmentData();
   
-  if( gSystem->Getenv("TOCDB") != TString("kTRUE") ){
+  if ( TString(gSystem->Getenv("TOCDB")) != TString("kTRUE") ) {
+    cout << "Generating full misalignment data in a file" << endl;
+
     // Create a File to store the alignment data
     TFile f("MUONfullMisalignment.root","RECREATE");
-    if(!f) {cerr<<"cannot open file for output\n";}
+    if ( !f.IsOpen() ) {
+      cerr << "cannot open file for output" << endl;
+    }
     
     f.cd();
     f.WriteObject(array,"MUONAlignObjs ","kSingleKey");
     f.Close();
-    array->Delete();
-  }else{
+  }
+  else {
+    cout << "Generating full misalignment data in CDB" << endl;
+
     // save in CDB storage
     const char* Storage = gSystem->Getenv("STORAGE");
     
@@ -67,10 +81,7 @@ void MakeMUONFullMisAlignment(Bool_t volpaths = true,
     cdbData->SetComment("MUON alignment objects with full misalignment");
     cdbData->SetAliRootVersion(gSystem->Getenv("ARVERSION"));
     AliCDBId id("MUON/Align/Data", 0, 9999999); 
-    storage->Put(array, id, cdbData);
-    
-    delete newTransform;
+    storage->Put(const_cast<TClonesArray*>(array), id, cdbData);
   }   
-  
-  
+  delete newTransform;
 }