]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MakeMUONFullMisAlignment.C
Moving from base to calib, and adding packing interface (a packed value is simply...
[u/mrichter/AliRoot.git] / MUON / MakeMUONFullMisAlignment.C
CommitLineData
226783d4 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
1895a097 15
226783d4 16// $Id$
1895a097 17
226783d4 18// Macro for generating the full misalignment data.
19// The macro is trigger from AliRoot/macros/MakeAllDETsFullMisAlignment.C
20//
21// Author: I. Hrivnacova, IPN Orsay
1895a097 22
226783d4 23void MakeMUONFullMisAlignment()
24{
25 // Check first if geometry is loaded,
26 // if not loaded try to load it from galice.root file
27 if ( ! gGeoManager && ! TGeoManager::Import("geometry.root") ) {
28 cerr << "Loading geometry failed." << endl;
29 return;
1895a097 30 }
226783d4 31
32 AliMUONGeometryTransformer transformer(true);
33 transformer.ReadGeometryData("volpath.dat", gGeoManager);
1895a097 34
35 AliMUONGeometryMisAligner misAligner(0.0, 0.03, 0.0, 0.03, 0.0, 0.03);
36 AliMUONGeometryTransformer* newTransform
226783d4 37 = misAligner.MisAlign(&transformer, true);
1895a097 38 TClonesArray* array = newTransform->GetMisAlignmentData();
39
226783d4 40 if( TString(gSystem->Getenv("TOCDB")) != TString("kTRUE") ) {
41 cout << "Generating full misalignment data in a file" << endl;
42
1895a097 43 // Create a File to store the alignment data
44 TFile f("MUONfullMisalignment.root","RECREATE");
45 if(!f) {cerr<<"cannot open file for output\n";}
46
47 f.cd();
48 f.WriteObject(array,"MUONAlignObjs ","kSingleKey");
49 f.Close();
50 array->Delete();
226783d4 51 }
52 else {
53 cout << "Generating full misalignment data in CDB" << endl;
54
1895a097 55 // save in CDB storage
5bd470e1 56 const char* Storage = gSystem->Getenv("STORAGE");
1895a097 57
58 AliCDBManager* cdbManager = AliCDBManager::Instance();
59 AliCDBStorage* storage = cdbManager->GetStorage(Storage);
60 AliCDBMetaData* cdbData = new AliCDBMetaData();
61 cdbData->SetResponsible("Dimuon Offline project");
62 cdbData->SetComment("MUON alignment objects with full misalignment");
5bd470e1 63 cdbData->SetAliRootVersion(gSystem->Getenv("ARVERSION"));
1895a097 64 AliCDBId id("MUON/Align/Data", 0, 9999999);
65 storage->Put(array, id, cdbData);
66
67 delete newTransform;
68 }
69
70
71}