]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AlirootRun_MUONtest.sh
Put MUON tracking into the general framework (Christian)
[u/mrichter/AliRoot.git] / MUON / AlirootRun_MUONtest.sh
1 #!/bin/sh
2 # $Id$
3
4 CURDIR=`pwd`
5 OUTDIR=test_out
6
7 rm -fr $OUTDIR
8 mkdir $OUTDIR
9 cp $ALICE_ROOT/MUON/.rootrc $ALICE_ROOT/MUON/rootlogon.C $OUTDIR
10 cd $OUTDIR
11
12 FULLPATH="$CURDIR/$OUTDIR"
13 NEVENTS=100
14 SEED=1234567
15
16 echo "Running simulation  ..."
17
18 aliroot -b  >& testSim.out << EOF 
19 // Uncoment following lines to run simulation with local residual mis-alignment
20 // (generated via MUONGenerateGeometryData.C macro)
21 // AliCDBManager* man = AliCDBManager::Instance();
22 // man->SetDefaultStorage("local://$ALICE_ROOT");
23 // man->SetSpecificStorage("MUON","local://$ALICE_ROOT/MUON/ResMisAlignCDB");
24 gRandom->SetSeed($SEED);
25 AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C");
26 MuonSim.SetMakeTrigger("MUON");
27 MuonSim.SetWriteRawData("MUON");
28 MuonSim.Run($NEVENTS);
29 .q
30 EOF
31
32 echo "Removing Digits files ..."
33 mkdir MUON.Digits
34 mv MUON.Digits*.root MUON.Digits/ 
35
36 echo "Running reconstruction  ..."
37
38 aliroot -b >& testReco.out << EOF
39 gRandom->SetSeed($SEED);
40 AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
41 AliTracker::SetFieldMap(field, kFALSE);
42 AliReconstruction MuonRec("galice.root");
43 MuonRec.SetInput("$FULLPATH/");
44 MuonRec.SetRunVertexFinder(kFALSE);
45 MuonRec.SetRunLocalReconstruction("MUON");
46 MuonRec.SetRunTracking("MUON");
47 MuonRec.SetFillESD("MUON");
48 MuonRec.SetLoadAlignData("MUON");
49 // Uncoment following line to run reconstruction with the orginal tracking method
50 // instead of the kalman one (default)
51 //MuonRec.SetOption("MUON","Original");
52 // Use the following to change clustering method
53 //MuonRec.SetOption("MUON","MLEM"); // new scheme AZs clustering
54 //MuonRec.SetOption("MUON","SIMPLEFIT"); // new scheme simple fitting
55 //MuonRec.SetOption("MUON","COG"); // new scheme basic center-of-gravity only
56 // Use the following to disconnect the status map creation (only for debug!)
57 // as this speeds up startup a bit...
58 //MuonRec.SetOption("MUON","NOSTATUSMAP");
59 MuonRec.Run();
60 .q
61 EOF
62
63 echo "Moving Digits files back ..."
64 mv MUON.Digits/MUON.Digits.root . 
65
66 echo "Running Trigger efficiency  ..."
67 aliroot -b >& testTriggerResults.out << EOF
68 .L $ALICE_ROOT/MUON/MUONTriggerEfficiency.C+
69 MUONTriggerEfficiency("galice.root",1);
70 .q
71 EOF
72
73 echo "Running efficiency  ..."
74
75 aliroot -b >& testResults.out << EOF
76 .L $ALICE_ROOT/MUON/MUONefficiency.C+
77 // no argument assumes Upsilon but MUONefficiency(443) works on Jpsi
78 MUONefficiency();
79 .q
80 EOF
81
82 echo "Running check ..."
83
84 aliroot -b >& testCheck.out << EOF
85 gSystem->Load("libMUONevaluation");
86 .L $ALICE_ROOT/MUON/MUONCheck.C+
87 MUONCheck(0, 9); 
88 .q
89 EOF
90
91 echo "Running dumps for selected event (5) ..."
92
93 aliroot -b << EOF
94 AliMUONData data("galice.root");
95 data.DumpKine(5);       > dump.kine
96 data.DumpHits(5);       > dump.hits
97 data.DumpDigits(5);     > dump.digits
98 data.DumpSDigits(5);    > dump.sdigits
99 data.DumpRecPoints(5);  > dump.recpoints
100 data.DumpRecTrigger(5); > dump.rectrigger
101 .q
102 EOF
103
104 echo "Finished"  
105 echo "... see results in test_out"
106
107 cd $CURDIR