]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AlirootRun_MUONtestlong.sh
Pre-allocate right amount of memory when used for de,manu storage (Laurent)
[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.Run(); 
46 .q
47 EOF
48
49 echo "Running Trigger efficiency  ..."
50
51 aliroot -b >& testTriggerResults.out << EOF
52 .L $ALICE_ROOT/MUON/MUONTriggerEfficiency.C+
53 MUONTriggerEfficiency();
54 .q
55 EOF
56
57 echo "Running efficiency  ..."
58
59 aliroot -b >& testEfficiency.out << EOF 
60 .L $ALICE_ROOT/MUON/MUONefficiency.C+
61 // no argument assumes Upsilon but MUONefficiency(443) handles Jpsi
62 MUONefficiency();
63 .q
64 EOF
65
66
67 aliroot -b >& testResults.out << EOF 
68 // no argument assumes Upsilon but MUONplotefficiency(443) handles Jpsi
69 .x $ALICE_ROOT/MUON/MUONplotefficiency.C
70 .q
71 EOF
72
73 more  testSim.out | grep 'RunSimulation: Execution time:'  > testTime.out
74 more  testSim.out | grep 'RunSDigitization: Execution time:'  >> testTime.out
75 more  testSim.out | grep 'RunDigitization: Execution time:'  >> testTime.out 
76
77 more  testReco.out | grep 'RunLocalReconstruction: Execution time for MUON'  >> testTime.out
78 more  testReco.out | grep 'Execution time for filling ESD ' >> testTime.out
79
80 #rm gphysi.dat
81 #rm *.root
82 #rm testSim.out
83 #rm testReco.out
84 #rm *.eps
85
86 echo "Finished"  
87 echo "... see results in testlong_out"
88
89 cd $CURDIR