cd ../sim
aliroot -b -q sim.C\(5\) 2>&1 | tee sim.log
aliroot -b -q rec.C 2>&1 | tee rec.log
+aliroot -b -q ${ALICE_ROOT}/STEER/CheckESD.C 2>&1 | tee check.log
+aliroot -b -q ${ALICE_ROOT}/STEER/CreateAODfromESD.C 2>&1 | tee aod.log
void rec() {
AliReconstruction reco;
- reco.SetRecoParam("TPC",AliTPCRecoParam::GetLowFluxParam());
- reco.SetRecoParam("TRD",AliTRDrecoParam::GetLowFluxParam());
- reco.SetRecoParam("PHOS",AliPHOSRecoParam::GetDefaultParameters());
- reco.SetRecoParam("MUON",AliMUONRecoParam::GetLowFluxParam());
- // reco.SetRunReconstruction("ITS TPC TRD TOF HMPID FMD PMD VZERO START MUON ZDC");
-// **** The field map settings must be the same as in Config.C !
- AliMagFMaps *field=new AliMagFMaps("Maps","Maps",2,1.,10.,AliMagFMaps::k5kG);
- Bool_t uniform=kFALSE;
- AliTracker::SetFieldMap(field,uniform);
+ reco.SetDefaultStorage("local://$ALICE_ROOT");
+ reco.SetSpecificStorage("GRP/GRP/Data",
+ Form("local://%s",gSystem->pwd()));
TStopwatch timer;
timer.Start();
void sim(Int_t nev=1) {
AliSimulation simulator;
+ simulator.SetDefaultStorage("local://$ALICE_ROOT");
+ simulator.SetSpecificStorage("GRP/GRP/Data",
+ Form("local://%s",gSystem->pwd()));
+
TStopwatch timer;
timer.Start();
simulator.Run(nev);