]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AlirootRun_MUONtest.sh
adapted for reading Digits or RecPoints (Philippe)
[u/mrichter/AliRoot.git] / MUON / AlirootRun_MUONtest.sh
CommitLineData
fa701981 1#!/bin/sh
2# $Id$
3
4CURDIR=`pwd`
5OUTDIR=test_out
6
7rm -fr $OUTDIR
8mkdir $OUTDIR
7430be1c 9cp $ALICE_ROOT/MUON/.rootrc $ALICE_ROOT/MUON/rootlogon.C $OUTDIR
fa701981 10cd $OUTDIR
11
7430be1c 12FULLPATH="$CURDIR/$OUTDIR"
e40c984d 13NEVENTS=100
b7368825 14SEED=1234567
15
fa701981 16echo "Running simulation ..."
17
7430be1c 18aliroot -b >& testSim.out << EOF
f6d516e9 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");
b7368825 24gRandom->SetSeed($SEED);
7430be1c 25AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C");
10c8d1ce 26MuonSim.SetMakeTrigger("MUON");
7430be1c 27MuonSim.SetWriteRawData("MUON");
5c6f99c2 28MuonSim.Run($NEVENTS);
fa701981 29.q
30EOF
31
7aef07e5 32echo "Removing Digits files ..."
33mkdir MUON.Digits
34mv MUON.Digits*.root MUON.Digits/
35
fa701981 36echo "Running reconstruction ..."
37
38aliroot -b >& testReco.out << EOF
7430be1c 39gRandom->SetSeed($SEED);
bd0cb923 40AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
b6675e8f 41AliTracker::SetFieldMap(field, kFALSE);
5c6f99c2 42AliReconstruction MuonRec("galice.root");
7430be1c 43MuonRec.SetInput("$FULLPATH/");
5c6f99c2 44MuonRec.SetRunTracking("");
45MuonRec.SetRunVertexFinder(kFALSE);
46MuonRec.SetRunLocalReconstruction("MUON");
47MuonRec.SetFillESD("MUON");
de2cd600 48MuonRec.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");
5c31bbf9 52// Use the following to change clustering method
53//MuonRec.SetOption("MUON","MLEM"); // new scheme AZ's clustering
54//MuonRec.SetOption("MUON","SIMPLEFIT"); // new scheme simple fitting
55//MuonRec.SetOption("MUON","COG"); // new scheme basic center-of-gravity only
7430be1c 56MuonRec.Run();
fa701981 57.q
58EOF
59
858e5b75 60echo "Running Trigger efficiency ..."
858e5b75 61aliroot -b >& testTriggerResults.out << EOF
5c6f99c2 62.L $ALICE_ROOT/MUON/MUONTriggerEfficiency.C+
858e5b75 63MUONTriggerEfficiency();
64.q
65EOF
66
72a7d831 67echo "Running efficiency ..."
fa701981 68
69aliroot -b >& testResults.out << EOF
5c6f99c2 70.L $ALICE_ROOT/MUON/MUONefficiency.C+
72a7d831 71// no argument assumes Upsilon but MUONefficiency(443) works on Jpsi
72MUONefficiency();
fa701981 73.q
74EOF
75
7430be1c 76if [ "$NEVENTS" -le 20 ]; then
77
5c6f99c2 78echo "Running dumps ..."
79
63b722de 80aliroot -b << EOF
5c6f99c2 81.L $ALICE_ROOT/MUON/MUONCheck.C+
7430be1c 82MUONdigits(); > check.digits
83MUONrecpoints(); > check.recpoints
84MUONrectracks(); > check.rectracks
85MUONrectrigger(); > check.rectrigger
5c6f99c2 86.q
7430be1c 87EOF
858e5b75 88
7430be1c 89fi
858e5b75 90
fa701981 91echo "Finished"
92echo "... see results in test_out"
93
94cd $CURDIR