00001
00002
00003
00004
00005
00006
00010 void
00011 MakeAlignment()
00012 {
00013 if (!TGeoManager::Import("geometry.root"))
00014 gAlice->Init("$ALICE_ROOT/FMD/Config.C");
00015 AliCDBManager* cdb = AliCDBManager::Instance();
00016 cdb->SetDefaultStorage("local://cdb");
00017
00018 gSystem->Load("libFMDutil.so");
00019 AliFMDAlignFaker f;
00020 f.RemoveAlign(AliFMDAlignFaker::kHalves);
00021 f.SetSensorDisplacement(0, 0, 0, 0, 0, 0);
00022 f.SetSensorRotation(0, 0, 0, 3, 3, 3);
00023 f.Exec();
00024 }
00025
00026
00027
00028