ROOT logo
void simTGeoUpgrade(Int_t nev=10) {

  gSystem->Exec(" rm *.root ");
  gSystem->Load("libITSUpgradeBase.so");
  gSystem->Load("libITSUpgradeSim.so");
  AliSimulation simulator("ConfigTgeoUpgrade.C");
  simulator.SetMakeSDigits("");

  simulator.SetMakeDigits("");

  simulator.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
  simulator.SetSpecificStorage("GRP/GRP/Data",
			       Form("local://%s",gSystem->pwd()));
  simulator.SetRunHLT("");
  simulator.SetRunQA(":");

  TStopwatch timer;
  timer.Start();
  simulator.Run(nev);
  timer.Stop();
  timer.Print();
}
 simTGeoUpgrade.C:1
 simTGeoUpgrade.C:2
 simTGeoUpgrade.C:3
 simTGeoUpgrade.C:4
 simTGeoUpgrade.C:5
 simTGeoUpgrade.C:6
 simTGeoUpgrade.C:7
 simTGeoUpgrade.C:8
 simTGeoUpgrade.C:9
 simTGeoUpgrade.C:10
 simTGeoUpgrade.C:11
 simTGeoUpgrade.C:12
 simTGeoUpgrade.C:13
 simTGeoUpgrade.C:14
 simTGeoUpgrade.C:15
 simTGeoUpgrade.C:16
 simTGeoUpgrade.C:17
 simTGeoUpgrade.C:18
 simTGeoUpgrade.C:19
 simTGeoUpgrade.C:20
 simTGeoUpgrade.C:21
 simTGeoUpgrade.C:22
 simTGeoUpgrade.C:23