]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/MakeEMCALResMisAlignment.C
jet cut update for matching task
[u/mrichter/AliRoot.git] / EMCAL / MakeEMCALResMisAlignment.C
CommitLineData
d7f5c01a 1void MakeEMCALResMisAlignment(TString geoname = "EMCAL_COMPLETE12SMV1"){
1895a097 2 // Create TClonesArray of residual misalignment objects for EMCAL
3 //
6fce62af 4 const char* macroname = "MakeEMCALResMisAlignment.C";
1e4f558f 5 if(geoname=="")geoname=AliEMCALGeometry::GetDefaultGeometryName();
6 const AliEMCALGeometry *emcalGeom = AliEMCALGeometry::GetInstance(geoname,"");
9d9bbd17 7 if(!emcalGeom) {
289cc8a7 8 Error("MakeEMCALResMisAlignment","Cannot obtain AliEMCALGeometry singleton\n");
9 return;
10 }
11
9d9bbd17 12 TClonesArray *array = new TClonesArray("AliAlignObjParams",emcalGeom->GetNumberOfSuperModules());
289cc8a7 13 TClonesArray &alobj = *array;
14
1895a097 15
6fce62af 16 // Activate CDB storage and load geometry from CDB
17 AliCDBManager* cdb = AliCDBManager::Instance();
162637e4 18 if(!cdb->IsDefaultStorageSet()) cdb->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
6fce62af 19 cdb->SetRun(0);
20
21 AliCDBStorage* storage;
22
a24be56b 23 if( TString(gSystem->Getenv("TOCDB")) == TString("kTRUE") ){
6fce62af 24 TString Storage = gSystem->Getenv("STORAGE");
25 if(!Storage.BeginsWith("local://") && !Storage.BeginsWith("alien://")) {
26 Error(macroname,"STORAGE variable set to %s is not valid. Exiting\n",Storage.Data());
27 return;
28 }
29 storage = cdb->GetStorage(Storage.Data());
30 if(!storage){
31 Error(macroname,"Unable to open storage %s\n",Storage.Data());
32 return;
33 }
34 AliCDBPath path("GRP","Geometry","Data");
35 AliCDBEntry *entry = storage->Get(path.GetPath(),cdb->GetRun());
36 if(!entry) Fatal(macroname,"Could not get the specified CDB entry!");
37 entry->SetOwner(0);
38 TGeoManager* geom = (TGeoManager*) entry->GetObject();
39 AliGeomManager::SetGeometry(geom);
40 }else{
41 AliGeomManager::LoadGeometry(); //load geom from default CDB storage
42 }
1895a097 43
44 Double_t dx, dy, dz, dpsi, dtheta, dphi;
45
7e154d52 46 const TString basepath = "EMCAL/FullSupermodule";
d3a9c52a 47 const TString hbasepath = "EMCAL/HalfSupermodule";
1895a097 48 TString pathstr;
49
50 Int_t iIndex=0; // let all modules have index=0 in a layer with no LUT
ae079791 51 AliGeomManager::ELayerID iLayer = AliGeomManager::kInvalidLayer;
52 UShort_t volid = AliGeomManager::LayerToVolUID(iLayer,iIndex);
1895a097 53
54 Int_t i;
d3a9c52a 55 Int_t j=0;
1895a097 56
57 // RS = local
58 // sigma translation = 1mm
59 // sigma rotation = 0.1 degree
60 TRandom *rnd = new TRandom(4321);
289cc8a7 61 Double_t sigmatr = 0.05; // max shift in cm w.r.t. local RS
1895a097 62 Double_t sigmarot = 0.1; // max rot in degrees w.r.t. local RS
d3a9c52a 63
1895a097 64 for(i=0; i<10; i++){
65 dx = rnd->Gaus(0.,sigmatr);
66 dy = rnd->Gaus(0.,sigmatr);
67 dz = rnd->Gaus(0.,sigmatr);
68 dpsi = rnd->Gaus(0.,sigmarot);
69 dtheta = rnd->Gaus(0.,sigmarot);
70 dphi = rnd->Gaus(0.,sigmarot);
71 pathstr=basepath;
72 pathstr+=(i+1);
90dbf5fb 73 new(alobj[j++]) AliAlignObjParams(pathstr, volid, dx, dy, dz, dpsi, dtheta, dphi, kFALSE);
d3a9c52a 74 }
75
76 for(i=0; i<2; i++){
77 dx = rnd->Gaus(0.,sigmatr);
78 dy = rnd->Gaus(0.,sigmatr);
79 dz = rnd->Gaus(0.,sigmatr);
80 dpsi = rnd->Gaus(0.,sigmarot);
81 dtheta = rnd->Gaus(0.,sigmarot);
82 dphi = rnd->Gaus(0.,sigmarot);
83 pathstr=hbasepath;
84 pathstr+=(i+1);
90dbf5fb 85 new(alobj[j++]) AliAlignObjParams(pathstr, volid, dx, dy, dz, dpsi, dtheta, dphi, kTRUE);
1895a097 86 }
87
a24be56b 88 if( TString(gSystem->Getenv("TOCDB")) != TString("kTRUE") ){
1895a097 89 // save on file
dfe9c69d 90 const char* filename = "EMCALresidualMisalignment.root";
91 TFile f(filename,"RECREATE");
92 if(!f){
93 Error(macroname,"cannot open file for output\n");
94 return;
95 }
96 Info(macroname,"Saving alignment objects to the file %s", filename);
1895a097 97 f.cd();
dfe9c69d 98 f.WriteObject(array,"EMCALAlignObjs","kSingleKey");
1895a097 99 f.Close();
100 }else{
101 // save in CDB storage
1895a097 102 AliCDBMetaData* md = new AliCDBMetaData();
289cc8a7 103 md->SetResponsible("Jennifer Klay");
104 md->SetComment("Residual misalignment for EMCAL, produced with sigmatr=0.05 and sigmarot=0.1 in the local RS");
5bd470e1 105 md->SetAliRootVersion(gSystem->Getenv("ARVERSION"));
dfe9c69d 106 AliCDBId id("EMCAL/Align/Data",0,AliCDBRunRange::Infinity());
1895a097 107 storage->Put(array,id,md);
108 }
109
110 array->Delete();
111
112}
113