]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/README
Add support for 64 bits
[u/mrichter/AliRoot.git] / MUON / README
... / ...
CommitLineData
1==========================================================
2Please add to this README file all information concerning
3config files, simulation, digitalization, clusterization,
4reconstruction and macro analysis
5
6==========================================================
7 How to run a MUON simulation
8==========================================================
9aliroot
10root [0] gAlice->Run(10,"$ALICE_ROOT/MUON/Config_MUON_test.C");
11
121 single muon of 7 GeV/c in the MUON spectrometer
13acceptance will be simulated using geant3.
14Hit information will be store in the root file in the
15execution directory.
16If you want to change the option or to define a new directory
17for hits, you have to do the following before:
18root [0] gAlice->SetConfigFunction("Config( \"/home/martinez/aliroot/work_NewIO/test/\" , \"box\" );");
19
20============================================================
21 How to run MUON Digitalization
22============================================================
23To process the digitalization of hits the AliRunDigitizer
24framework is used:
25
26AliRunDigitizer * manager = new AliRunDigitizer(1,1);
27manager->SetInputStream(0,"galice.root");
28AliMUONDigitizerv1* dMUON = new AliMUONDigitizerv1(manager)
29manager->AddDigitizer(dMUON);
30manager->Exec("deb");
31
32============================================================
33 How to run MUON RecPoint clusterization
34============================================================
35aliroot -b << EOF
36.includepath $ALICE_ROOT/STEER
37.includepath $ALICE_ROOT/MUON
38.L $ALICE_ROOT/MUON/MUONrawclusters.C++
39MUONrawclusters("galice.root",0,9999);
40to Load
41gSystem->Load("$ALICE_ROOT/MUON/MUONrawclusters_C.so")
42
43First event and last event are given by hand, but this will change.
44
45============================================================
46 How to run MUON Trigger
47============================================================
48.includepath $ALICE_ROOT/STEER
49.includepath $ALICE_ROOT/MUON
50.L $ALICE_ROOT/MUON/MUONtrigger.C++
51MUONtrigger("galice.root",0,9999);
52
53============================================================
54 How to run MUON Tracking reconstruction (old output)
55===========================================================
56.includepath $ALICE_ROOT/STEER
57.includepath $ALICE_ROOT/MUON
58.L $ALICE_ROOT/MUON/MUONrecoNtuple.C++
59MUONrecoNtuple(0,9999,0,"galice.root")
60
61First event and last event are given by hand, but this will change.
62
63===========================================================
64 How to run MUON Tracking reconstruction (new output)
65===========================================================
66.includepath $ALICE_ROOT/STEER
67.includepath $ALICE_ROOT/MUON
68.L $ALICE_ROOT/MUON/MUONTracker.C++
69MUONTracker("galice.root",0,9999);
70
71Output in MUON.Tracks.root using the new IO
72as a TClonesArray of AliMUONTrack
73
74============================================================
75 How to run MUONCheck macro
76============================================================
77To check the content of a root data file, the MUONCheck
78provides a ascii output on screen.
79
80To compile MUONCheck.C
81.includepath $ALICE_ROOT/STEER
82.includepath $ALICE_ROOT/MUON
83.L $ALICE_ROOT/MUON/MUONCheck.C++
84To Load
85gSystem->Load("$ALICE_ROOT/MUON/MUONCheck_C.so")
86
87To print Kine : (default file is galice.root )
88MUONkine()
89
90To print hits : (default file is galice.root if not MUONhits("toto.root""); )
91MUONhits()
92
93To print digits : (default file is galice.root)
94MUONdigits()
95
96To print rawcluster : (default file is galice.root)
97MUONrecpoints()
98
99To print trigger : (default file is galice.root)
100MUONTestTrigger()
101
102===========================================================
103 Still working ..............
104===========================================================