]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AlirootRun_MUONtestAlign.sh
new functionality and new class added
[u/mrichter/AliRoot.git] / MUON / AlirootRun_MUONtestAlign.sh
index 9508d545b3b71cdae1daf04cbcd12fc4fbc14638..7d3dbdef6fe17870dab3578aabcdc645438e9959 100755 (executable)
@@ -3,9 +3,9 @@
 #
 # By J. Castillo
 
-
 CURDIR=`pwd`
 OUTDIR=test_align
+SIMDIR="generated"
 
 rm -fr $OUTDIR
 mkdir $OUTDIR
@@ -19,39 +19,66 @@ SEED=1234567
 echo "Generating misalignment ..."
 
 aliroot -b >& testMisalign.out << EOF
-gAlice->Init("$ALICE_ROOT/MUON/Config.C");
-.x $ALICE_ROOT/MUON/MUONCheckMisAligner.C(0., 0.03, 0., 0.03, 0., 0.03, "FullMisAlignCDB");
+AliMpCDB::LoadMpSegmentation2();
+TString configFileName = "$ALICE_ROOT/MUON/Config.C";
+gROOT->LoadMacro(configFileName.Data());
+gInterpreter->ProcessLine(gAlice->GetConfigFunction());
+gAlice->GetMCApp()->Init();
+gGeoManager->Export("geometry.root");
+.L $ALICE_ROOT/MUON/MUONCheckMisAligner.C+
+MUONCheckMisAligner(0., 0.03, 0., 0.03, 0., 0.03, "FullMisAlignCDB");
 .q
 EOF
 
-cp -r $ALICE_ROOT/MUON/Calib FullMisAlignCDB/MUON/
-
 echo "Running simulation  ..."
 
 aliroot -b  >& testSim.out << EOF 
-// Uncoment following lines to run simulation with local residual mis-alignment
+// Uncoment following lines to run simulation with local full mis-alignment
 // (generated via MUONGenerateGeometryData.C macro)
 AliCDBManager* man = AliCDBManager::Instance();
-man->SetDefaultStorage("local://$ALICE_ROOT");
-man->SetSpecificStorage("MUON","local://FullMisAlignCDB");
-gRandom->SetSeed($SEED);
+man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
+man->SetSpecificStorage("MUON/Align/Data","local://FullMisAlignCDB");
 AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C");
+MuonSim.SetSeed($SEED);
 MuonSim.SetMakeTrigger("MUON");
-MuonSim.SetWriteRawData("MUON");
+MuonSim.SetWriteRawData("MUON","raw.root",kTRUE);
+MuonSim.SetMakeDigits("MUON");
+MuonSim.SetMakeSDigits("MUON");
+MuonSim.SetMakeDigitsFromHits("");
 MuonSim.Run($NEVENTS);
 .q
 EOF
 
+echo "Moving generated files to $SIMDIR"
+mkdir $SIMDIR
+mv *QA*.root *.log $SIMDIR
+mv MUON*.root Kinematics*.root galice.root TrackRefs*.root $SIMDIR
+
 echo "Running reconstruction  ..."
 
 aliroot -b >& testReco.out << EOF
+// Uncoment following lines to run reconstruction with local full mis-alignment
+// (generated via MUONGenerateGeometryData.C macro)
+//AliCDBManager* man = AliCDBManager::Instance();
+//man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
+//man->SetSpecificStorage("MUON/Align/Data","local://$ALICE_ROOT/OCDB/MUON/FullMisAlignCDB");
 gRandom->SetSeed($SEED);
 AliReconstruction MuonRec("galice.root");
-MuonRec.SetInput("$FULLPATH/");
-MuonRec.SetRunTracking("");
+MuonRec.SetInput("$FULLPATH/raw.root");
 MuonRec.SetRunVertexFinder(kFALSE);
 MuonRec.SetRunLocalReconstruction("MUON");
-MuonRec.SetFillESD("MUON");
+MuonRec.SetRunTracking("MUON");
+MuonRec.SetFillESD("");
+MuonRec.SetLoadAlignData("MUON")
+MuonRec.SetNumberOfEventsPerFile(1000);
+AliMUONRecoParam *muonRecoParam = AliMUONRecoParam::GetLowFluxParam();
+//  muonRecoParam->SaveFullClusterInESD(kTRUE,100.);
+muonRecoParam->CombineClusterTrackReco(kFALSE);
+//muonRecoParam->SetClusteringMode("PEAKFIT");
+//muonRecoParam->SetClusteringMode("PEAKCOG");
+muonRecoParam->Print("FULL");
+
+AliRecoParam::Instance()->RegisterRecoParam(muonRecoParam);
 MuonRec.Run();
 .q
 EOF
@@ -59,11 +86,13 @@ EOF
 echo "Running alignment ..."
 
 aliroot -b >& testAlign.out << EOF
-.x $ALICE_ROOT/MUON/MUONAlignment.C
+.L $ALICE_ROOT/MUON/MUONAlignment.C+
+AliMpCDB::LoadMpSegmentation2();
+MUONAlignment();
 .q
 EOF
 
 echo "Finished"  
-echo "... see results in test_align"
+echo "... see results in " $OUTDIR
 
 cd $CURDIR