reco.SetWriteESDfriend();
reco.SetWriteAlignmentData();
- reco.SetRecoParam("ITS",AliITSRecoParam::GetHighFluxParam());
- reco.SetRecoParam("TPC",AliTPCRecoParam::GetHighFluxParam());
- reco.SetRecoParam("TRD",AliTRDrecoParam::GetHighFluxParam());
- reco.SetRecoParam("PHOS",AliPHOSRecoParam::GetDefaultParameters());
- reco.SetRecoParam("MUON",AliMUONRecoParam::GetHighFluxParam());
- // AliTPCReconstructor::SetStreamLevel(1);
- reco.SetRunVertexFinderTracks(kFALSE);
-// **** 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()));
+ reco.SetRecoParam("ITS",AliITSRecoParam::GetHighFluxParam()); // to change the default vertexer
TStopwatch timer;
timer.Start();
void rec() {
- AliCDBManager::Instance()->SetRun(0);
-
- AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 2, 1., 10., AliMagFMaps::k5kG);
- AliTracker::SetFieldMap(field,kTRUE);
-
AliReconstruction reco;
reco.SetUniformFieldTracking(kFALSE);
reco.SetWriteESDfriend();
reco.SetWriteAlignmentData();
- reco.SetRecoParam("TPC",AliTPCRecoParam::GetHighFluxParam());
- reco.SetRecoParam("TRD",AliTRDrecoParam::GetHighFluxParam());
- reco.SetRecoParam("PHOS",AliPHOSRecoParam::GetDefaultParameters());
- reco.SetRecoParam("MUON",AliMUONRecoParam::GetHighFluxParam());
- reco.SetRunReconstruction("ITS TPC TRD TOF HMPID PHOS EMCAL MUON FMD PMD ZDC T0 VZERO");
+ reco.SetDefaultStorage("local://$ALICE_ROOT");
+ reco.SetSpecificStorage("GRP/GRP/Data",
+ Form("local://%s/..",gSystem->pwd()));
+ reco.SetRecoParam("ITS",AliITSRecoParam::GetHighFluxParam()); // to change the default vertexer
+
reco.SetInput("raw.root");
reco.SetNumberOfEventsPerFile(-1); // all events in one single file
- reco.SetRunVertexFinderTracks(kFALSE);
TStopwatch timer;
timer.Start();
aliroot -b -q ${ALICE_ROOT}/STEER/CreateAODfromESD.C 2>&1 | tee aod.log
cd recraw
-ln -s ../geometry.root
ln -s ../raw.root
aliroot -b -q rec.C 2>&1 | tee rec.log
+aliroot -b -q ${ALICE_ROOT}/STEER/CreateAODfromESD.C 2>&1 | tee aod.log
void sim(Int_t nev=1) {
AliSimulation simulator;
simulator.SetWriteRawData("ALL","raw.root",kTRUE);
+
+ simulator.SetDefaultStorage("local://$ALICE_ROOT");
+ simulator.SetSpecificStorage("GRP/GRP/Data",
+ Form("local://%s",gSystem->pwd()));
TStopwatch timer;
timer.Start();