]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AlirootRun_MUONtestlong.sh
Added MuonRec.SetLoadAlignData("MUON") to get rid off warnings from
[u/mrichter/AliRoot.git] / MUON / AlirootRun_MUONtestlong.sh
1 #!/bin/sh
2 # $Id$
3
4 CURDIR=`pwd`
5 OUTDIR=testlong_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 # Minimum number of events to have enough stat. for invariant mass fit
14 # 10000 is ok, 20000 is really fine
15 NEVENTS=10
16 SEED=1234567
17
18
19 echo "Running simulation  ..."
20
21 aliroot -b >& testSim.out << EOF  
22 // Uncoment following lines to run simulation with local residual mis-alignment
23 // (generated via MUONGenerateGeometryData.C macro)
24 // AliCDBManager* man = AliCDBManager::Instance();
25 // man->SetDefaultStorage("local://$ALICE_ROOT");
26 // man->SetSpecificStorage("MUON","local://$ALICE_ROOT/MUON/ResMisAlignCDB");
27 gRandom->SetSeed($SEED);
28 AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C");
29 MuonSim.SetMakeTrigger("MUON");
30 MuonSim.Run($NEVENTS); 
31 .q
32 EOF
33
34 echo "Running reconstruction  ..."
35
36 aliroot -b >& testReco.out << EOF 
37 gRandom->SetSeed($SEED);
38 AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k4kG);
39 AliTracker::SetFieldMap(field, kFALSE);
40 AliReconstruction MuonRec("galice.root"); 
41 MuonRec.SetRunTracking("");
42 MuonRec.SetRunVertexFinder(kFALSE);
43 MuonRec.SetRunLocalReconstruction("MUON");
44 MuonRec.SetFillESD("MUON");
45 MuonRec.SetLoadAlignData("MUON")
46 MuonRec.Run(); 
47 .q
48 EOF
49
50 echo "Running Trigger efficiency  ..."
51
52 aliroot -b >& testTriggerResults.out << EOF
53 .L $ALICE_ROOT/MUON/MUONTriggerEfficiency.C+
54 MUONTriggerEfficiency();
55 .q
56 EOF
57
58 echo "Running efficiency  ..."
59
60 aliroot -b >& testEfficiency.out << EOF 
61 .L $ALICE_ROOT/MUON/MUONefficiency.C+
62 // no argument assumes Upsilon but MUONefficiency(443) handles Jpsi
63 MUONefficiency();
64 .q
65 EOF
66
67
68 aliroot -b >& testResults.out << EOF 
69 // no argument assumes Upsilon but MUONplotefficiency(443) handles Jpsi
70 .x $ALICE_ROOT/MUON/MUONplotefficiency.C
71 .q
72 EOF
73
74 more  testSim.out | grep 'RunSimulation: Execution time:'  > testTime.out
75 more  testSim.out | grep 'RunSDigitization: Execution time:'  >> testTime.out
76 more  testSim.out | grep 'RunDigitization: Execution time:'  >> testTime.out 
77
78 more  testReco.out | grep 'RunLocalReconstruction: Execution time for MUON'  >> testTime.out
79 more  testReco.out | grep 'Execution time for filling ESD ' >> testTime.out
80
81 #rm gphysi.dat
82 #rm *.root
83 #rm testSim.out
84 #rm testReco.out
85 #rm *.eps
86
87 echo "Finished"  
88 echo "... see results in testlong_out"
89
90 cd $CURDIR