ROOT logo
void initGeom()
{
    // Macro replacing the gAlice->Init() to initialize the geometry
    // Suggested by Raffaele Grosso <Raffaele.Grosso@cern.ch>
    
    AliCDBManager* man = AliCDBManager::Instance();
    man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
    man->SetRun(0);
    
    gROOT->LoadMacro("Config.C");
    gInterpreter->ProcessLine(gAlice->GetConfigFunction());
    gAlice->GetMCApp()->Init();
}
 initGeom.C:1
 initGeom.C:2
 initGeom.C:3
 initGeom.C:4
 initGeom.C:5
 initGeom.C:6
 initGeom.C:7
 initGeom.C:8
 initGeom.C:9
 initGeom.C:10
 initGeom.C:11
 initGeom.C:12
 initGeom.C:13
 initGeom.C:14