]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/README
- AliHLTComponent: bugfix in buffer handling; overwrite check added to
[u/mrichter/AliRoot.git] / MUON / README
1 $Id$
2
3 ==========================================================
4 Please add  to this README file all information concerning 
5 config files, simulation, digitalization, clusterization, 
6 reconstruction and macro analysis
7
8 ==========================================================
9  How to check that your aliroot is working well
10 ==========================================================
11 There is a script file AlirootRun_MUONtest.sh which 
12 allows for simulating, reconstructing and making the
13 invariant analysis of the generated Upsilon (1S).
14 The used configuration file is Config.C in MUON 
15 directory.
16 You have to type :
17 source $ALICE_ROOT/MUON/AlirootRun_MUONtest.sh 
18 The results of this test are saved in test_out/ directory.
19 Please note that the CDB (Condition DataBase) is now always *required* 
20 to perform either simulation or reconstruction. For the moment, a version
21  of that CDB is stored in CVS, so you should have one already in MUON/Calib
22 subdirectories.
23
24 ==========================================================
25  How to check that your aliroot is working VERY well
26 ==========================================================
27 There is a script file AlirootRun_MUONlongtest.sh which
28 allows for simulating, reconstructing and making the
29 -+invariant analysis of the generated Upsilon (1S).
30 This script generates a large number of Upsilon (20k) 
31 in order to access differential quantities. 
32 The used configuration file is Config.C in MUON
33 directory.
34 One should really run this script to check if the MUON 
35 code can process a large number of events WITHOUT errors,
36 in particular before making important commits !!
37
38 You have to type :
39 $ALICE_ROOT/MUON/AlirootRun_MUONtestlong.sh
40 The results of this test are saved in testlong_out/ directory
41 and will be kept in CVS
42
43 (NOTE: the macros performing the calculations/plots MUONefficiency.C 
44 and MUONplotEfficiency.C are also able to handle J/Psi if 
45 Config.C is modified accordingly )
46
47 ==========================================================
48  How to run a MUON generation
49 ==========================================================
50 aliroot
51 root [0] gAlice->Run(10,"$ALICE_ROOT/MUON/Config.C");
52
53 1 single muon of 7 GeV/c in the MUON spectrometer 
54 acceptance will be simulated using geant3. 
55 Hit information will be store in the root file in the
56 execution directory.
57 If you want to change the option or to define a new directory
58 for hits, you have to do the following before:
59 root [0] gAlice->SetConfigFunction("Config( \"/home/martinez/aliroot/work_NewIO/test/\" , \"box\" );"); 
60
61 ============================================================
62  How to dump the content of Root data files 
63 ============================================================
64 To check the content of Root data files, the AliMUONData class
65 provides the functions to produce an ASCII output on the screen
66 which can be redirected on the file:
67
68 aliroot
69 root [0] AliMUONData data("galice.root");
70 root [1] data.DumpKine(5);       > dump.kine
71 root [2] data.DumpHits(5);       > dump.hits
72 root [3] data.DumpDigits(5);     > dump.digits
73 root [4] data.DumpSDigits(5);    > dump.sdigits
74 root [5] data.DumpRecPoints(5);  > dump.recpoints
75 root [6] data.DumpRecTrigger(5); > dump.rectrigger
76
77 If the event number in the function argument is not specified,
78 data are dumped for all events.
79
80
81 ============================================================
82  How to check the Geometry with the new Geometrical modeler
83  ftp://root.cern.ch/root/doc/chapter16.pdf
84  http://agenda.cern.ch/fullAgenda.php?ida=a05212
85 ============================================================
86 gAlice->Init("$ALICE_ROOT/MUON/Config.C");
87 gGeoManager->GetMasterVolume()->Draw();
88
89
90 ============================================================
91  How to check the overlap with the new Geometrical modeler
92  ftp://root.cern.ch/root/doc/chapter16.pdf
93  http://agenda.cern.ch/fullAgenda.php?ida=a05212
94 ============================================================
95 gAlice->Init("$ALICE_ROOT/MUON/Config.C");
96 gGeoManager->CheckOverlaps();
97 gGeoManager->PrintOverlaps();
98
99 ============================================================
100  How to run MUONdisplay
101 ============================================================
102 First you need to perform a full simulation: 
103 generation, digitalisation and clusterisation
104 To run MUONdisplay with Root 5.04/00 you need to get a fix in
105 the gpad/src/TPad.cxx from Root CVS:
106  cvs update -r 1.200 gpad/src/TPad.cxx
107 and recompile root. 
108
109 .L $ALICE_ROOT/MUON/MUONdisplay.C
110 MUONdisplay(0,"galice.root")
111
112 ============================================================
113  Tracking parameters, cuts, energy loss and physics processes
114 ============================================================
115 Tracking parameters in MUON are automatically defined by GEANT
116 MUON takes the default values of CUTs  and physics processes
117 defined by the Config files, except for the gas mixture medium 
118 of the tracking chambers. The CUT's and physics processes of
119 the gas mixture medium  is then defined in the galice.cuts file
120 in the data directory. In particular ILOSS parameter MUST be
121 equal unity (1) in order simulate a realistic energy loss
122 distribution (mean value and fluctuations) in the active gas.
123
124 ============================================================
125  Tracking of particle in the magnetic field
126 ============================================================
127 GEANT has two ways for tracking charged particles in the 
128 magnetic field: HELIX et RKUTA.
129 HELIX is faster and works well if the gradient of magnetic 
130 field is small. 
131 For MUON, HELIX is a not a good approximation and we must 
132 use RKUTA to get the optimal mass resolution of the 
133 spectrometer. The choice of HELIX or RKUTA is done in the
134 config file when the magnetic field is defined:
135   AliMagFMaps* field = new AliMagFMaps("Maps","Maps", TRACKING, FACTOR, MAXB, AliMagFMaps::k5kG);
136   gAlice->SetField(field);
137 TRACKING must be 1 for RKUTA and 2 for HELIX (the default value for aliroot is 2 (HELIX))
138 FACTOR allows you to set the magnetic field to 0, just putting FACTOR=0. Default value is 1.
139 MAXB is the maximum magnetic field which is 10.T
140
141 ===========================================================
142  MUON cocktail for physics ..............
143 ===========================================================
144 There is a MUON cocktail generator of the muon sources in the
145 EVGEN directory. This class derives from AliGenCocktail.
146 In the init of this class I have filled the cocktail with 
147 the muon sources: J/Psi, Upsilon, Open Charm, Open Beauty, 
148 Pion, Kaons. The code needs only the production cross section 
149 at 4pi (for the moment this values are in the code since I 
150 prefere them do not be modified), and the code calculates the  
151 rate of particles in the acceptance, making the scaling based 
152 on the number of collisions for the hard probes and on the  
153 number of participants for soft sources: Pions and Kaons.
154
155 In the Genereate of this class all entries in the cocktail 
156 are called and we define a "primordial trigger" with requires 
157 a minimum number of muons above a Pt cut in the required acceptance.
158 In order to normalized to the real number of simulated events, 
159 there are 2 data members in the class fNsuceeded adn fNGenerate 
160 which tell us what is the biais source.
161
162 Enclose an example to use this generator:   
163 AliGenMUONCocktail * gener = new AliGenMUONCocktail();
164 gener->SetPtRange(1.,100.);       // Transverse momentum range  
165 gener->SetPhiRange(0.,360.);    // Azimuthal angle range 
166 gener->SetYRange(-4.0,-2.4);
167 gener->SetMuonPtCut(1.);
168 gener->SetMuonThetaCut(171.,178.);
169 gener->SetMuonMultiplicity(2);
170 gener->SetImpactParameterRange(0.,5.); // 10% most centra PbPb collisions
171 gener->SetVertexSmear(kPerTrack);  
172 gener->SetOrigin(0,0,0);        // Vertex position
173 gener->SetSigma(0,0,0.0);       // Sigma in (X,Y,Z) (cm) on IP position
174 gener->Init();
175  
176 ================================================================
177  csh Script for the full reconstruction with raw data generator
178 ================================================================
179 The rawdata generation and analysis is working with the new segmentation.
180 So the config file must use the version "AliMUONFactoryV3"
181
182 Generation
183 The method AliSimulation::SetWriteRawData("MUON") enables on 
184 the muon rawdata generation
185 aliroot -b << EOF  
186 AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C")
187 MuonSim.SetMakeTrigger("MUON");
188 MuonSim.SetWriteRawData("MUON")
189 MuonSim.Run(10)
190 .q
191 EOF
192
193 Reconstruction
194 aliroot -b << EOF 
195 AliReconstruction MuonRec("galice.root");
196 MuonRec.SetInput("$YOUR_WORKING_DIRECTORY/");  Do not forget the slash at the end!
197 MuonRec.SetRunVertexFinder(kFALSE);
198 MuonRec.SetRunLocalReconstruction("MUON");
199 MuonRec.SetRunTracking("");
200 MuonRec.SetFillESD("MUON");
201 MuonRec.SetOption("MUON", "VS"); // to use VS cluster finder
202 // MuonRec.SetOption("MUON", "VS Original"); // to run VS and original track finder
203 // MuonRec.SetOption("MUON", "Combi"); // to run combined cluster / track finder
204 MMuonRec.Run();
205 .q
206 EOF
207
208 ============================================================
209  How to read & decode raw data 
210 ============================================================
211 These macros can read & decode DDL files, root and DATE files.
212 Nevertheless for the two latter, aliroot has to be compiled with DATE.
213
214 For tracker raw data
215 .includepath $ALICE_ROOT/STEER
216 .includepath $ALICE_ROOT/MUON
217 .includepath $ALICE_ROOT/RAW
218 .L $ALICE_ROOT/MUON/MUONRawStreamTracker.C+
219 MUONRawStreamTracker(maxEvent, firstDDL, lastDDL, rawFileName)
220
221 For trigger raw data
222 .includepath $ALICE_ROOT/STEER
223 .includepath $ALICE_ROOT/MUON
224 .includepath $ALICE_ROOT/RAW
225 .L $ALICE_ROOT/MUON/MUONRawStreamTrigger.C+ 
226 MUONRawStreamTrigger(maxEvent, firstDDL, lastDDL, rawFileName)
227
228 Default wise the macro read all DDL files from the current directory for 1000 events.
229 For root file rawFileName must end with .root, for date file rawFileName 
230 must be no extention. For DDL files you have to specified the directory 
231 where the raw0...n subdirectories are located:
232 MUONRawStreamTracker(maxEvent, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
233
234
235 ============================================================
236  How to run MUONRecoCheck macro
237 ============================================================
238 To check the muon reconstruction by comparing the reconstructed tracks
239 with the reference tracks made of "AliTrackReference" for the hits and
240 kinematic informations (TParticle) for the vertex.
241 This macro can be used to check the track reconstruction e.g. efficiency,
242 momentum resolution ... but also to make physics analysis whenever
243 track identification is needed.   
244
245 To compile MUONRecoCheck.C
246 .includepath $ALICE_ROOT/STEER
247 .includepath $ALICE_ROOT/MUON
248 .L $ALICE_ROOT/MUON/MUONRecoCheck.C+
249
250 // To run MUONRecoCheck
251 MUONRecoCheck(nEvent,"galice.root"); // nEvent = nb of events
252
253
254 ============================================================
255  How to run MUONTracker macro
256 ============================================================
257 To make the track reconstruction directly from AliTrackReference hits 
258 which are recorded in TrackRefs.root during the simulation.
259 It can be used to check the reconstruction without clusterization.      
260
261 To compile MUONTracker.C
262 .includepath $ALICE_ROOT/STEER
263 .includepath $ALICE_ROOT/MUON
264 .L $ALICE_ROOT/MUON/MUONTracker.C+
265
266 // To run MUONTracker
267 MUONTracker(iEventMin,iEventMax,"galice.root"); // iEventMin: first event
268
269 ===========================================================
270  Macro  MUONGenerateGeometryData.C
271 ===========================================================
272                                                 
273 Macro for generating the geometry data files
274 and mis-alignment data.
275
276 Geometry data files:
277 - MUON/data/volpath.dat file contains the volume paths 
278 for all alignable objects (modules & detection 
279 elements).
280 - MUON/data/transform.dat file contains the transformations
281 data (translation and rotation) for all alignable objects
282 (modules & detection elements)
283 - MUON/data/svmap.dat file contains all the information to link 
284 each geant volume (it can be extended to other virtual MC) with
285 a detection element. The point here is that a given detection
286 element, i.e. a slat chamber can consist of more geant volumes.
287 the correspondence is then defined in an input file.
288 Each time there is a change in the definition of MC geometry, these
289 input files must be re-generated via the macro  
290 MUONGenerateGeometryData.C
291
292 To be run from aliroot:
293 .x MUONGenerateGeometryData.C
294
295 The generated files do not replace the existing ones
296 but have different names (with extension ".out").
297 Replacement with new files has to be done manually.
298
299 If the appropiate flags are set (zeroAlign, resMisAlign and/or fullMisAlign)
300 zero, residual and/or full misalignment data are generated in a
301 local CDB folder (defaults are ResMisAlignCDB and FullMisAlignCDB
302 in the working directory). Inside the local CDB the path for the
303 alignment data is (and must be) "MUON/Align/Data/".
304 Residual misalignment: Default is our current estimate of
305 misalignment after all our alignment procedure has been applied.
306 Full misalignment: Default is our current estimate of initial
307 misalignment.
308
309 ==========================================================
310 How to simulate events with misaligned geometry in local CDB
311 ==========================================================
312
313 If you want to use a misaligned geometry to simulate some
314 events you can use a local CDB. For this need to follow
315 the next steps:
316
317 - Generate misaligned data in local CDB.
318 You can use MUONGenerateGeometryData.C as described above in
319 the corresponding section. Let's assume you used the default
320 residual misalignment settings, then you have a local CDB in
321 your working directory called ResMisAlignCDB containing
322 misalignement data (ResMisAlignCDB/MUON/Align).
323
324 - Tell AliSimulation you want to use your local CDB for 
325 MUON/Align/Data
326 To do this you need to instantiate the AliCDBManager, set the
327 default storage and set the specific storage for MUON/Align/Data,
328 before instantiating AliSimulation (see for example the commented
329 lines AlirootRun_MUONtest.sh).
330
331 aliroot -b  >& testSim.out << EOF
332 AliCDBManager* man = AliCDBManager::Instance();
333 man->SetDefaultStorage("local://$ALICE_ROOT");
334 man->SetSpecificStorage("MUON/align/Data","local://ResMisAlignCDB");
335 AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C");
336 MuonSim.SetWriteRawData("MUON");
337 MuonSim.Run(10);
338 .q
339 EOF
340
341 ==========================================================
342 How to check the alignment software
343 ==========================================================
344
345 The script AlirootRun_MUONtestAlign.sh  allows you to check the software for
346 the alignment with physics tracks. The script will:
347 - Generate a misaligned geometry in a local CDB (default FullMisAlignCDB)
348 - Simulate 1000 events using previously misaligned geometry
349 - Reconstruct the events using perfect geometry
350 - Run the alignment code over the above events using MUONAlignment.C
351
352 To run you need to type:
353 $ALICE_ROOT/MUON/AlirootRun_MUONtestAlign.sh
354
355 The results of the test are saved in test_align/ directory. The file measShifts.root
356 contains useful graphs for studying the alignment performances. A local CDB
357 containing the realigned geometry is also created (default is ReAlignCDB). The
358 file $ALICE_ROOT/MUON/data/transform2ReAlign.dat contains the
359 transformations describing the realigned geometry to be compared with the
360 used misaligned geometry $ALICE_ROOT/MUON/data/transform2.dat.
361
362 IMPORTANT NOTE: For a useful test of the alignment performances, the
363 order of 100 000 tracks is needed, it is then advisable to generate and
364 reconstruct enough events separately and run MUONAlignment.C providing a file list
365 afterwards.
366
367 ==========================================================
368  How to Merge events
369 ==========================================================
370
371 You can merge 2 types of simulated events. For example, 
372 you can simulate Hijing events, and then simulate muons
373 merging both.
374
375 Merging is done at the sdigits level, so Kinematics files 
376 of the merged events will just correspond to the 
377 Config.C simulated file (not to Config_HIJING.C).
378
379 You must, first, do the Hijing simulation and store it 
380 in directory $HIJING_SIM. Note that for merging you 
381 won't need Kinematics files of the Hijing simulation...
382
383 Hijing simulation
384
385 aliroot -b << EOF
386 AliSimulation HijingSim("$HIJING_SIM/Config_HIJING.C")
387 HijingSim.Run(5)
388 .q
389 EOF
390
391
392 Then you can do muon simulation and reconstruction
393 merging both simulated events. In next example, we are
394 merging 20 times each Hijing event in order to simulate 
395 100 muons merged with 5 Hijing events.
396
397
398 aliroot -b << EOF
399 AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C")
400 MuonSim.MergeWith("$HIJING_SIM/galice.root",20) //parameters are the Hijing simulation file and the number of times we use each Hijing event
401 MuonSim.Run(100) // number of muon (Config.C) events
402 .q
403 EOF
404
405
406 aliroot -b << EOF
407 TPluginManager * pluginmanager = gROOT->GetPluginManager()
408 pluginmanager->AddHandler("AliReconstructor","MUON","AliMUONReconstructor","MUON","AliMUONReconstructor()")
409 AliReconstruction  MuonRec("galice.root")
410 MuonRec.SetRunTracking("")
411 MuonRec.SetRunVertexFinder(kFALSE)
412 MuonRec.SetRunLocalReconstruction("MUON")
413 MuonRec.SetFillESD("MUON")
414 MuonRec.Run()
415 .q
416 EOF
417
418 ==========================================================
419  How to play with the CDB
420 ==========================================================
421
422 If you'd like to see how the CDB is created, please have a look at the 
423 MUONCDB.C (work in progress, though).
424
425 ==========================================================
426 ...on track numbering 
427 ==========================================================
428
429 All generated particles, including primary and secondary
430 particles are put on the stack. The secondary particles are kept
431 in the stack only if they gave a hit in *any* of the ALICE detectors
432 The number of all particles placed on the stack for a given event 
433 can be obtained with
434 Int_t nPart = AliStack::GetNtrack();
435 Looping from 0 to nPart via AliStack::Particle(ipart)
436 gives the particle listing as obtained from the particle generator (primaries) 
437 and Monte Carlo (secondaries).
438
439 The particle response in the detector, a hit, is registered
440 in the hits tree and the hits are filled with each primary track.
441 The total number of "tracks" (fills of the tree) can be obtained
442 with ntracks = AliMUONData::GetNtracks() and is usually smaller than "nPart".
443 Since particles can also deposit hits in other detectors than 
444 the MUON spectrometer, there will be many "tracks" (fills) in the hit-tree
445 without a hit in MUON.
446
447 The correspondence between "track ID" in the hits-tree ("itr") and the
448 particle ID for particles on the stack (i.e. generated particles) can be
449 obtained via:
450 for (Int_t itr = 0; itr < ntracks; itr++) {
451     MUONData->GetTrack(itr); //track "itr" of the hits-tree
452     Int_t nhitstot = MUONData->Hits()->GetEntriesFast();
453     AliMUONHit* mHit;    
454     for (Int_t ihit=0; ihit<nhitstot; ihit++) {
455        mHit = static_cast<AliMUONHit*>(MUONData->Hits()->At(ihit));
456        Int_t id = muonHit->Track(); //gives particle ID on stack
457        TParticle* particle = gAlice->Stack()->Particle(id);
458     }  
459 }
460
461 During the procedure to go from hits to digits, the hits 
462 are summed up such that more than one track can contribute
463 to a given digit. As a consequence the method
464 Int_t AliMUONDigit::Track(Int_t trackID)
465 takes an argument, where "trackID" runs from 0 to 
466 AliMUONDigit::Ntracks() to provide the reference to *all*
467 tracks that contributed to it. The returned track ID is the one 
468 referred to in the hit-tree. To know which is the generated particle
469 that deposited a given digit one has to follow the sequence of the kind:
470
471
472 mDigit = static_cast<AliMUONDigit*>(digits->At(idigit));
473 for (int tr = 0; tr < mDigit->Ntracks(); tr++){
474    Int_t hitTrackID = mDigit->Track(tr);
475    MUONData->GetTrack(hitTrackID);
476    mHit = static_cast<AliMUONHit*>(MUONData->Hits()->At(0));
477                                   //just take first hit of given track
478    Int_t numPart = mHit->Track(); //gives ID of particle on the stack
479    Int_t idTrack  = mHit->Particle(); //gives flavour code of the particle
480 }
481 In this example, for simplicity, only the first hit of a 
482 hit-track is used to check the particle ID.
483
484 ==========================================================
485 Macro to process PDC06 preproduction 
486 ==========================================================
487
488 To read a generation/reconstrution from PDC06 preproduction, and write a file 
489 with a tree of AliMUONTrackLight / AliMUONPairLight :
490 go to the directory containing the generation/reconstruction. From there run
491 aliroot
492 .x DecodeRecoCocktail.C+
493 .q
494
495 To read the file previously generated:
496 aliroot
497 .x ReadRecoCocktail.C+
498 .q
499
500 ===========================================================
501  Still working ..............
502 ===========================================================