]> git.uio.no Git - u/mrichter/AliRoot.git/blob - GRP/UpdateCDBIdealGeom.C
Fixing a warning
[u/mrichter/AliRoot.git] / GRP / UpdateCDBIdealGeom.C
1 #include "ARVersion.h"
2 #if !defined(__CINT__) || defined(__MAKECINT__)
3 #include "AliCDBManager.h"
4 #include "AliCDBStorage.h"
5 #include "AliCDBId.h"
6 #include "AliCDBMetaData.h"
7 #include "AliGeomManager.h"
8 #include "AliMC.h"
9 #include <TROOT.h>
10 #include "AliRun.h"
11 #include <TGeoManager.h>
12 #include <TString.h>
13 #include <TInterpreter.h>
14 #endif
15
16 void UpdateCDBIdealGeom(const char* cdbUri, const char* cfgFile){
17   // Produce the ideal geometry and store it in the specified CDB
18   // The second argument allows to specify the config file to be used
19   // in particular for giving the choice to generate either a full or
20   // a partial geometry.
21   //
22
23   AliCDBManager* cdb = AliCDBManager::Instance();
24   // we set the default storage to the repository because some dets require
25   // already at the time of geometry creation to find calibration objects in the cdb
26   AliCDBStorage* storage = 0;
27   if(!cdb->IsDefaultStorageSet()) cdb->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
28   storage = cdb->GetStorage(cdbUri);
29   if(!storage) 
30   {
31     Printf("unable to create valid storage from: %s", cdbUri);
32     return;
33   }
34   cdb->SetRun(0);
35   AliCDBId id("GRP/Geometry/Data",0,AliCDBRunRange::Infinity());
36   AliCDBMetaData *md= new AliCDBMetaData();
37
38   // Get root and AliRoot versions
39   const char* rootv = gROOT->GetVersion();
40   TString av(ALIROOT_SVN_BRANCH);
41   Int_t revnum = ALIROOT_SVN_REVISION;
42
43   Printf("root version: %s.  AliRoot %s, revision number %d",rootv,av.Data(),revnum);
44
45   md->SetAliRootVersion(av.Data());
46   md->SetComment(Form("Geometry produced with root version %s and AliRoot %s, revision number %d",rootv,av.Data(),revnum));
47   
48   gROOT->LoadMacro(cfgFile);
49   gInterpreter->ProcessLine(gAlice->GetConfigFunction());
50   gAlice->GetMCApp()->Init();
51   
52   if(!gGeoManager){
53     Printf("Unable to produce a valid geometry to be put in the CDB!");
54     return;
55   }
56   gGeoManager->DefaultColors(); // assign default colors according to Z of material
57   // (many colors turned into dark gray nuances some time ago, when the root palette was changed)
58   
59   Printf("Storing in CDB geometry produced with root version %s and AliRoot version %s",rootv,av.Data());
60   storage->Put(gGeoManager,id,md);
61   // This is to allow macros lauched after this one in the same session to find the
62   // newly produced geometry.
63   storage->QueryCDB(cdb->GetRun());
64
65 }
66
67