]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AlirootRun_MUONtest.sh
Optional geometry without CPV
[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 "Running reconstruction  ..."
33
34 aliroot -b >& testReco.out << EOF
35 gRandom->SetSeed($SEED);
36 AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
37 AliTracker::SetFieldMap(field, kFALSE);
38 AliReconstruction MuonRec("galice.root");
39 MuonRec.SetInput("$FULLPATH/");
40 MuonRec.SetRunTracking("");
41 MuonRec.SetRunVertexFinder(kFALSE);
42 MuonRec.SetRunLocalReconstruction("MUON");
43 MuonRec.SetFillESD("MUON");
44 MuonRec.SetLoadAlignData("MUON");
45 // Uncoment following line to run reconstruction with the orginal tracking method
46 // instead of the kalman one (default)
47 // MuonRec.SetOption("MUON","Original");
48 // Use the following to change clustering method
49 //MuonRec.SetOption("MUON","MLEM"); // new scheme AZ's clustering
50 //MuonRec.SetOption("MUON","SIMPLEFIT"); // new scheme simple fitting
51 //MuonRec.SetOption("MUON","COG"); // new scheme basic center-of-gravity only
52 MuonRec.Run();
53 .q
54 EOF
55
56 echo "Running Trigger efficiency  ..."
57 aliroot -b >& testTriggerResults.out << EOF
58 .L $ALICE_ROOT/MUON/MUONTriggerEfficiency.C+
59 MUONTriggerEfficiency();
60 .q
61 EOF
62
63 echo "Running efficiency  ..."
64
65 aliroot -b >& testResults.out << EOF
66 .L $ALICE_ROOT/MUON/MUONefficiency.C+
67 // no argument assumes Upsilon but MUONefficiency(443) works on Jpsi
68 MUONefficiency();
69 .q
70 EOF
71
72 if [ "$NEVENTS" -le 20 ]; then
73
74 echo "Running dumps ..."
75
76 aliroot -b << EOF
77 .L $ALICE_ROOT/MUON/MUONCheck.C+
78 MUONdigits(); > check.digits
79 MUONrecpoints(); > check.recpoints
80 MUONrectracks(); > check.rectracks
81 MUONrectrigger(); > check.rectrigger
82 .q
83 EOF
84
85 fi
86
87 echo "Finished"  
88 echo "... see results in test_out"
89
90 cd $CURDIR