]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/READMEcalign.txt
PMD info on da/amore updated
[u/mrichter/AliRoot.git] / MUON / READMEcalign.txt
CommitLineData
6c960a43 1// $Id$
2
3/*!
4
5\page README_calign Offline Calibration and Alignment
6
7\section calign_s1 Offline monitoring of the Alignment and Calibration
8
9The macro MUONClusterInfo.C reads the ESDs or RecPoints and creates a tree of
10AliMUONClusterInfo objects which can be conveniently used to plot track to
11cluster residuals, cluster and pads properties.
12
13Usage:
14<pre>
15root [0] .L $ALICE_ROOT/MUON/MUONClusterInfo.C+
16root [1] MUONClusterInfo(nevents, esdFileName, inFileName, outFileName);
17</pre>
18
19 1) <code> if ( esdFileName != "" ) </code>:
20
21 Loop over ESD event and fill AliMUONClusterInfo object with cluster +
22 corresponding track parameters.
23
24 2) <code> if ( inFileName != "" ) </code>:
25
26 Loop over RecPoints and fill AliMUONClusterInfo object with cluster not
27 attached to a track;
28
29 3) Write results in a new root file.
30
31\section calign_s2 How to run offline calibration and alignment tasks
32
33AliMUONAlignmentTask:
34
35It is an AliAnalysisTask to align the MUON spectrometer. The Task reads
36as input ESDs and feeds the MUONTracks to AliMUONAlignment. The alignment
6139aa84 37itself is performed by AliMillepede. An OCDB entry is written with the
38alignment parameters. See AddTaskMuonAlignment.C for more details on usage
6c960a43 39
40AliMUONChamberCalibrationTask:
41
42It is a AliAnalysisTaskSE to recalibrate the MUON spectrometers. The output is
43a TTree of AliMUONClusterInfo.
44
45
46The AliMUON*Task are designed to run in an analyis train of the Analysis
47Framework. The macros AddTaskMuon*.C can be used to add the task to an
48analysis train. An usage example based on the new standard AnalysisTrainNew.C
49will be provided soon.
50
51
52This chapter is defined in the READMEcalign.txt file.
53
54*/