]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMD.cxx
Calibration object splitted in: pedestal + E calib + reco parameters
[u/mrichter/AliRoot.git] / FMD / AliFMD.cxx
CommitLineData
4c039060 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
88cb7938 15/* $Id$ */
c2fc1258 16/** @file AliFMD.cxx
17 @author Christian Holm Christensen <cholm@nbi.dk>
18 @date Sun Mar 26 17:59:18 2006
19 @brief Implementation of AliFMD base class
20*/
e802be3e 21//____________________________________________________________________
4347b38f 22//
37c4363a 23// Forward Multiplicity Detector based on Silicon wafers. This class
9f662337 24// is the driver for especially simulation.
25//
26// The Forward Multiplicity Detector consists of 3 sub-detectors FMD1,
27// FMD2, and FMD3, each of which has 1 or 2 rings of silicon sensors.
37c4363a 28//
29// This is the base class for all FMD manager classes.
30//
4347b38f 31// The actual code is done by various separate classes. Below is
32// diagram showing the relationship between the various FMD classes
1a1fdef7 33// that handles the simulation
4347b38f 34//
35//
36// +----------+ +----------+
1a1fdef7 37// | AliFMDv1 | | AliFMDv0 |
4347b38f 38// +----------+ +----------+
1a1fdef7 39// | | +-----------------+
40// +----+--------------+ +--| AliFMDDigitizer |
41// | | +-----------------+
42// | +---------------------+ |
4ac75127 43// | +--| AliFMDBaseDigitizer |<--+
1a1fdef7 44// V 1 | +---------------------+ |
45// +--------+<>--+ | +------------------+
46// | AliFMD | +--| AliFMDSDigitizer |
47// +--------+<>--+ +------------------+
9f662337 48// 1 | +---------------------+
49// +--| AliFMDReconstructor |
50// +---------------------+
4347b38f 51//
52// * AliFMD
53// This defines the interface for the various parts of AliROOT that
1a1fdef7 54// uses the FMD, like AliFMDSimulator, AliFMDDigitizer,
55// AliFMDReconstructor, and so on.
56//
57// * AliFMDv0
58// This is a concrete implementation of the AliFMD interface.
59// It is the responsibility of this class to create the FMD
60// geometry.
4347b38f 61//
62// * AliFMDv1
63// This is a concrete implementation of the AliFMD interface.
64// It is the responsibility of this class to create the FMD
65// geometry, process hits in the FMD, and serve hits and digits to
66// the various clients.
67//
1a1fdef7 68// * AliFMDSimulator
69// This is the base class for the FMD simulation tasks. The
70// simulator tasks are responsible to implment the geoemtry, and
71// process hits.
4347b38f 72//
9f662337 73// * AliFMDReconstructor
74// This is a concrete implementation of the AliReconstructor that
75// reconstructs pseudo-inclusive-multiplicities from digits (raw or
76// from simulation)
37c4363a 77//
9f662337 78// Calibration and geometry parameters are managed by separate
79// singleton managers. These are AliFMDGeometry and
80// AliFMDParameters. Please refer to these classes for more
81// information on these.
37c4363a 82//
fe4da5cc 83
56b1929b 84// These files are not in the same directory, so there's no reason to
85// ask the preprocessor to search in the current directory for these
86// files by including them with `#include "..."'
1d9082a3 87#include <cmath> // __CMATH__
56b1929b 88#include <TClonesArray.h> // ROOT_TClonesArray
89#include <TGeometry.h> // ROOT_TGeomtry
90#include <TNode.h> // ROOT_TNode
1a1fdef7 91#include <TXTRU.h> // ROOT_TXTRU
92#include <TRotMatrix.h> // ROOT_TRotMatrix
56b1929b 93#include <TTUBE.h> // ROOT_TTUBE
94#include <TTree.h> // ROOT_TTree
56b1929b 95#include <TBrowser.h> // ROOT_TBrowser
45855cd7 96#include <TVirtualMC.h> // ROOT_TVirtualMC
02a27b50 97#include <TVector2.h> // ROOT_TVector2
ee8a5fe6 98#include <TGeoManager.h> // ROOT_TGeoManager
56b1929b 99
100#include <AliRunDigitizer.h> // ALIRUNDIGITIZER_H
101#include <AliLoader.h> // ALILOADER_H
102#include <AliRun.h> // ALIRUN_H
103#include <AliMC.h> // ALIMC_H
02a27b50 104#include <AliMagF.h> // ALIMAGF_H
f95a63c4 105// #include <AliLog.h> // ALILOG_H
106#include "AliFMDDebug.h" // Better debug macros
e802be3e 107#include "AliFMD.h" // ALIFMD_H
02a27b50 108#include "AliFMDDigit.h" // ALIFMDDIGIT_H
109#include "AliFMDSDigit.h" // ALIFMDSDIGIT_H
e802be3e 110#include "AliFMDHit.h" // ALIFMDHIT_H
1a1fdef7 111#include "AliFMDGeometry.h" // ALIFMDGEOMETRY_H
112#include "AliFMDDetector.h" // ALIFMDDETECTOR_H
113#include "AliFMDRing.h" // ALIFMDRING_H
e802be3e 114#include "AliFMDDigitizer.h" // ALIFMDDIGITIZER_H
02a27b50 115#include "AliFMDSDigitizer.h" // ALIFMDSDIGITIZER_H
116// #include "AliFMDGeometryBuilder.h"
e802be3e 117#include "AliFMDRawWriter.h" // ALIFMDRAWWRITER_H
02a27b50 118#include "AliFMDPoints.h" // ALIFMDPOINTS_H
88cb7938 119
4347b38f 120//____________________________________________________________________
925e6570 121ClassImp(AliFMD)
1a1fdef7 122#if 0
123 ; // This is to keep Emacs from indenting the next line
124#endif
7e54281f 125
4347b38f 126//____________________________________________________________________
127AliFMD::AliFMD()
90da4514 128 : AliDetector(),
129 fSDigits(0),
afddaa11 130 fNsdigits(0),
1a1fdef7 131 fDetailed(kTRUE),
b5ee4425 132 fUseOld(kFALSE),
133 fUseAssembly(kTRUE),
134 fBad(0)
fe4da5cc 135{
136 //
137 // Default constructor for class AliFMD
138 //
f95a63c4 139 AliFMDDebug(10, ("\tDefault CTOR"));
4ac75127 140 fHits = 0;
141 fDigits = 0;
142 fIshunt = 0;
54e415a8 143 fBad = new TClonesArray("AliFMDHit");
fe4da5cc 144}
dc8af42e 145
4347b38f 146//____________________________________________________________________
1a1fdef7 147AliFMD::AliFMD(const char *name, const char *title)
4347b38f 148 : AliDetector (name, title),
afddaa11 149 fSDigits(0),
150 fNsdigits(0),
1a1fdef7 151 fDetailed(kTRUE),
b5ee4425 152 fUseOld(kFALSE),
153 fUseAssembly(kFALSE),
54e415a8 154 fBad(0)
fe4da5cc 155{
156 //
157 // Standard constructor for Forward Multiplicity Detector
158 //
f95a63c4 159 AliFMDDebug(10, ("\tStandard CTOR"));
54e415a8 160 fBad = new TClonesArray("AliFMDHit");
54240c8d 161
fe4da5cc 162 // Initialise Hit array
4347b38f 163 HitsArray();
164 gAlice->GetMCApp()->AddHitList(fHits);
d1280e40 165
4347b38f 166 // (S)Digits for the detectors disk
167 DigitsArray();
168 SDigitsArray();
169
170 // CHC: What is this?
dc8af42e 171 fIshunt = 0;
e939a978 172 //PH SetMarkerColor(kRed);
173 //PH SetLineColor(kYellow);
fe4da5cc 174}
d28dcc0d 175
4347b38f 176//____________________________________________________________________
dc8af42e 177AliFMD::~AliFMD ()
d28dcc0d 178{
4347b38f 179 // Destructor for base class AliFMD
180 if (fHits) {
181 fHits->Delete();
182 delete fHits;
183 fHits = 0;
184 }
185 if (fDigits) {
186 fDigits->Delete();
187 delete fDigits;
188 fDigits = 0;
189 }
190 if (fSDigits) {
191 fSDigits->Delete();
192 delete fSDigits;
193 fSDigits = 0;
194 }
54e415a8 195 if (fBad) {
196 fBad->Delete();
197 delete fBad;
198 fBad = 0;
199 }
4347b38f 200}
201
56b1929b 202
4347b38f 203//====================================================================
204//
205// GEometry ANd Traking
206//
207//____________________________________________________________________
208void
209AliFMD::CreateGeometry()
210{
4347b38f 211 //
37c4363a 212 // Create the geometry of Forward Multiplicity Detector. The actual
9f662337 213 // construction of the geometry is delegated to the class
214 // AliFMDGeometryBuilder, invoked by the singleton manager
215 // AliFMDGeometry.
1a1fdef7 216 //
54e415a8 217 AliFMDGeometry* fmd = AliFMDGeometry::Instance();
54e415a8 218 fmd->SetDetailed(fDetailed);
219 fmd->UseAssembly(fUseAssembly);
220 fmd->Build();
4347b38f 221}
222
223//____________________________________________________________________
224void AliFMD::CreateMaterials()
225{
54e415a8 226 // Define the materials and tracking mediums needed by the FMD
227 // simulation. These mediums are made by sending the messages
228 // AliMaterial, AliMixture, and AliMedium to the passed AliModule
229 // object module. The defined mediums are
4347b38f 230 //
54e415a8 231 // FMD Si$ Silicon (active medium in sensors)
232 // FMD C$ Carbon fibre (support cone for FMD3 and vacuum pipe)
233 // FMD Al$ Aluminium (honeycomb support plates)
234 // FMD PCB$ Printed Circuit Board (FEE board with VA1_3)
235 // FMD Chip$ Electronics chips (currently not used)
236 // FMD Air$ Air (Air in the FMD)
237 // FMD Plastic$ Plastic (Support legs for the hybrid cards)
238 //
9f662337 239 // The geometry builder should really be the one that creates the
240 // materials, but the architecture of AliROOT makes that design
241 // akward. What should happen, was that the AliFMDGeometryBuilder
242 // made the mediums, and that this class retrives pointers from the
243 // TGeoManager, and registers the mediums here. Alas, it's not
244 // really that easy.
245 //
f95a63c4 246 AliFMDDebug(10, ("\tCreating materials"));
54e415a8 247 // Get pointer to geometry singleton object.
248 AliFMDGeometry* geometry = AliFMDGeometry::Instance();
249 geometry->Init();
250#if 0
251 if (gGeoManager && gGeoManager->GetMedium("FMD Si$")) {
252 // We need to figure out the some stuff about the geometry
253 fmd->ExtractGeomInfo();
254 return;
255 }
256#endif
54e415a8 257 Int_t id;
258 Double_t a = 0;
259 Double_t z = 0;
260 Double_t density = 0;
261 Double_t radiationLength = 0;
262 Double_t absorbtionLength = 999;
263 Int_t fieldType = gAlice->Field()->Integ(); // Field type
264 Double_t maxField = gAlice->Field()->Max(); // Field max.
265 Double_t maxBending = 0; // Max Angle
266 Double_t maxStepSize = 0.001; // Max step size
267 Double_t maxEnergyLoss = 1; // Max Delta E
268 Double_t precision = 0.001; // Precision
269 Double_t minStepSize = 0.001; // Minimum step size
270
271 // Silicon
272 a = 28.0855;
273 z = 14.;
274 density = geometry->GetSiDensity();
275 radiationLength = 9.36;
276 maxBending = 1;
277 maxStepSize = .001;
278 precision = .001;
279 minStepSize = .001;
280 id = kSiId;
281 AliMaterial(id, "Si$", a, z, density, radiationLength, absorbtionLength);
282 AliMedium(kSiId, "Si$", id,1,fieldType,maxField,maxBending,
283 maxStepSize,maxEnergyLoss,precision,minStepSize);
284
285
286 // Carbon
287 a = 12.011;
288 z = 6.;
289 density = 2.265;
290 radiationLength = 18.8;
291 maxBending = 10;
292 maxStepSize = .01;
293 precision = .003;
294 minStepSize = .003;
295 id = kCarbonId;
296 AliMaterial(id, "Carbon$", a, z, density, radiationLength, absorbtionLength);
297 AliMedium(kCarbonId, "Carbon$", id,0,fieldType,maxField,maxBending,
298 maxStepSize,maxEnergyLoss,precision,minStepSize);
299
300 // Aluminum
301 a = 26.981539;
302 z = 13.;
303 density = 2.7;
304 radiationLength = 8.9;
305 id = kAlId;
306 AliMaterial(id, "Aluminum$",a,z, density, radiationLength, absorbtionLength);
307 AliMedium(kAlId, "Aluminum$", id, 0, fieldType, maxField, maxBending,
308 maxStepSize, maxEnergyLoss, precision, minStepSize);
309
310
311 // Copper
312 a = 63.546;
313 z = 29;
314 density = 8.96;
315 radiationLength = 1.43;
316 id = kCopperId;
317 AliMaterial(id, "Copper$",
318 a, z, density, radiationLength, absorbtionLength);
319 AliMedium(kCopperId, "Copper$", id, 0, fieldType, maxField, maxBending,
320 maxStepSize, maxEnergyLoss, precision, minStepSize);
321
322
323 // Silicon chip
324 {
325 Float_t as[] = { 12.0107, 14.0067, 15.9994,
326 1.00794, 28.0855, 107.8682 };
327 Float_t zs[] = { 6., 7., 8.,
328 1., 14., 47. };
329 Float_t ws[] = { 0.039730642, 0.001396798, 0.01169634,
330 0.004367771, 0.844665, 0.09814344903 };
331 density = 2.36436;
332 maxBending = 10;
333 maxStepSize = .01;
334 precision = .003;
335 minStepSize = .003;
336 id = kSiChipId;
337 AliMixture(id, "Si Chip$", as, zs, density, 6, ws);
338 AliMedium(kSiChipId, "Si Chip$", id, 0, fieldType, maxField, maxBending,
339 maxStepSize, maxEnergyLoss, precision, minStepSize);
340 }
341
342 // Kaption
343 {
344 Float_t as[] = { 1.00794, 12.0107, 14.010, 15.9994};
345 Float_t zs[] = { 1., 6., 7., 8.};
346 Float_t ws[] = { 0.026362, 0.69113, 0.07327, 0.209235};
347 density = 1.42;
348 maxBending = 1;
349 maxStepSize = .001;
350 precision = .001;
351 minStepSize = .001;
352 id = kKaptonId;
353 AliMixture(id, "Kaption$", as, zs, density, 4, ws);
354 AliMedium(kKaptonId, "Kaption$", id,0,fieldType,maxField,maxBending,
355 maxStepSize,maxEnergyLoss,precision,minStepSize);
356 }
357
358 // Air
359 {
360 Float_t as[] = { 12.0107, 14.0067, 15.9994, 39.948 };
361 Float_t zs[] = { 6., 7., 8., 18. };
362 Float_t ws[] = { 0.000124, 0.755267, 0.231781, 0.012827 };
363 density = .00120479;
364 maxBending = 1;
365 maxStepSize = .001;
366 precision = .001;
367 minStepSize = .001;
368 id = kAirId;
369 AliMixture(id, "Air$", as, zs, density, 4, ws);
370 AliMedium(kAirId, "Air$", id,0,fieldType,maxField,maxBending,
371 maxStepSize,maxEnergyLoss,precision,minStepSize);
372 }
373
374 // PCB
375 {
376 Float_t zs[] = { 14., 20., 13., 12.,
377 5., 22., 11., 19.,
378 26., 9., 8., 6.,
379 7., 1.};
380 Float_t as[] = { 28.0855, 40.078, 26.981538, 24.305,
381 10.811, 47.867, 22.98977, 39.0983,
382 55.845, 18.9984, 15.9994, 12.0107,
383 14.0067, 1.00794};
384 Float_t ws[] = { 0.15144894, 0.08147477, 0.04128158, 0.00904554,
385 0.01397570, 0.00287685, 0.00445114, 0.00498089,
386 0.00209828, 0.00420000, 0.36043788, 0.27529426,
387 0.01415852, 0.03427566};
388 density = 1.8;
389 maxBending = 1;
390 maxStepSize = .001;
391 precision = .001;
392 minStepSize = .001;
393 id = kPcbId;
394 AliMixture(id, "PCB$", as, zs, density, 14, ws);
395 AliMedium(kPcbId, "PCB$", id,0,fieldType,maxField,maxBending,
396 maxStepSize,maxEnergyLoss,precision,minStepSize);
397 }
398
399 // Plastic
400 {
401 Float_t as[] = { 1.01, 12.01 };
402 Float_t zs[] = { 1., 6. };
403 Float_t ws[] = { 1., 1. };
404 density = 1.03;
405 maxBending = 10;
406 maxStepSize = .01;
407 precision = .003;
408 minStepSize = .003;
409 id = kPlasticId;
410 AliMixture(id, "Plastic$", as, zs, density, -2, ws);
411 AliMedium(kPlasticId, "Plastic$", id,0,fieldType,maxField,maxBending,
412 maxStepSize,maxEnergyLoss,precision,minStepSize);
413 }
d28dcc0d 414}
dc8af42e 415
4347b38f 416//____________________________________________________________________
417void
418AliFMD::Init()
bf000c32 419{
9f662337 420 // Initialize the detector
421 //
f95a63c4 422 AliFMDDebug(1, ("Initialising FMD detector object"));
45855cd7 423 TVirtualMC* mc = TVirtualMC::GetMC();
424 AliFMDGeometry* fmd = AliFMDGeometry::Instance();
425 const TArrayI& actGeo = fmd->ActiveIds();
426 TArrayI actVmc(actGeo.fN);
427 for (Int_t i = 0; i < actGeo.fN; i++) {
428 TGeoVolume *sens = gGeoManager->GetVolume(actGeo[i]);
429 if (!sens) {
430 AliError(Form("No TGeo volume for sensitive volume ID=%d",actGeo[i]));
431 continue;
432 }
433 actVmc[i] = mc->VolId(sens->GetName());
434 AliFMDDebug(1, ("Active vol id # %d: %d changed to %d",
435 i, actGeo[i], actVmc[i]));
436 }
437 fmd->SetActive(actVmc.fArray, actVmc.fN);
d760ea03 438 // fmd->InitTransformations();
bf000c32 439}
dc8af42e 440
54240c8d 441//____________________________________________________________________
442void
443AliFMD::FinishEvent()
444{
9f662337 445 // Called at the end of the an event in simulations. If the debug
446 // level is high enough, then the `bad' hits are printed.
447 //
bf000c32 448 if (AliLog::GetDebugLevel("FMD", "AliFMD") < 10) return;
54e415a8 449 if (fBad && fBad->GetEntries() > 0) {
450 AliWarning((Form("EndEvent", "got %d 'bad' hits", fBad->GetEntries())));
451 TIter next(fBad);
452 AliFMDHit* hit;
bf000c32 453 while ((hit = static_cast<AliFMDHit*>(next()))) hit->Print("D");
54e415a8 454 fBad->Clear();
455 }
54240c8d 456}
457
458
4347b38f 459//====================================================================
460//
461// Graphics and event display
462//
463//____________________________________________________________________
464void
465AliFMD::BuildGeometry()
b9a2d5e4 466{
4347b38f 467 //
9f662337 468 // Build simple ROOT TNode geometry for event display. With the new
469 // geometry modeller, TGeoManager, this seems rather redundant.
f95a63c4 470 AliFMDDebug(10, ("\tCreating a simplified geometry"));
b9a2d5e4 471
1a1fdef7 472 AliFMDGeometry* fmd = AliFMDGeometry::Instance();
473
474 static TXTRU* innerShape = 0;
475 static TXTRU* outerShape = 0;
476 static TObjArray* innerRot = 0;
477 static TObjArray* outerRot = 0;
478
479 if (!innerShape || !outerShape) {
480 // Make the shapes for the modules
481 for (Int_t i = 0; i < 2; i++) {
482 AliFMDRing* r = 0;
483 switch (i) {
484 case 0: r = fmd->GetRing('I'); break;
485 case 1: r = fmd->GetRing('O'); break;
486 }
487 if (!r) {
488 AliError(Form("no ring found for i=%d", i));
489 return;
490 }
491 Double_t siThick = r->GetSiThickness();
02a27b50 492 const Int_t knv = r->GetNVerticies();
1a1fdef7 493 Double_t theta = r->GetTheta();
494 Int_t nmod = r->GetNModules();
495
02a27b50 496 TXTRU* shape = new TXTRU(r->GetName(), r->GetTitle(), "void", knv, 2);
497 for (Int_t j = 0; j < knv; j++) {
498 TVector2* vv = r->GetVertex(knv - 1 - j);
1a1fdef7 499 shape->DefineVertex(j, vv->X(), vv->Y());
500 }
501 shape->DefineSection(0, -siThick / 2, 1, 0, 0);
502 shape->DefineSection(1, +siThick / 2, 1, 0, 0);
e939a978 503 shape->SetLineColor(kYellow); //PH kYellow is the default line color in FMD
1a1fdef7 504
505 TObjArray* rots = new TObjArray(nmod);
506 for (Int_t j = 0; j < nmod; j++) {
507 Double_t th = (j + .5) * theta * 2;
508 TString name(Form("FMD_ring_%c_rot_%02d", r->GetId(), j));
509 TString title(Form("FMD Ring %c Rotation # %d", r->GetId(), j));
510 TRotMatrix* rot = new TRotMatrix(name.Data(), title.Data(),
511 90, th, 90, fmod(90+th,360), 0, 0);
512 rots->AddAt(rot, j);
513 }
514
515 switch (r->GetId()) {
516 case 'i':
517 case 'I': innerShape = shape; innerRot = rots; break;
518 case 'o':
519 case 'O': outerShape = shape; outerRot = rots; break;
520 }
521 }
522 }
523
4347b38f 524 TNode* top = gAlice->GetGeometry()->GetNode("alice");
525
1a1fdef7 526 for (Int_t i = 1; i <= 3; i++) {
527 AliFMDDetector* det = fmd->GetDetector(i);
528 if (!det) {
529 Warning("BuildGeometry", "FMD%d seems to be disabled", i);
530 continue;
531 }
532 Double_t w = 0;
533 Double_t rh = det->GetRing('I')->GetHighR();
534 Char_t id = 'I';
535 if (det->GetRing('O')) {
536 w = TMath::Abs(det->GetRingZ('O') - det->GetRingZ('I'));
537 id = (TMath::Abs(det->GetRingZ('O'))
538 > TMath::Abs(det->GetRingZ('I')) ? 'O' : 'I');
539 rh = det->GetRing('O')->GetHighR();
540 }
541 w += (det->GetRing(id)->GetModuleSpacing() +
542 det->GetRing(id)->GetSiThickness());
543 TShape* shape = new TTUBE(det->GetName(), det->GetTitle(), "void",
544 det->GetRing('I')->GetLowR(), rh, w / 2);
545 Double_t z = (det->GetRingZ('I') - w / 2);
546 if (z > 0) z += det->GetRing(id)->GetModuleSpacing();
547 top->cd();
548 TNode* node = new TNode(det->GetName(), det->GetTitle(), shape,
549 0, 0, z, 0);
550 fNodes->Add(node);
551
552 for (Int_t j = 0; j < 2; j++) {
553 AliFMDRing* r = 0;
554 TShape* rshape = 0;
555 TObjArray* rots = 0;
556 switch (j) {
557 case 0:
558 r = det->GetRing('I'); rshape = innerShape; rots = innerRot; break;
559 case 1:
560 r = det->GetRing('O'); rshape = outerShape; rots = outerRot; break;
561 }
562 if (!r) continue;
563
564 Double_t siThick = r->GetSiThickness();
565 Int_t nmod = r->GetNModules();
566 Double_t modspace = r->GetModuleSpacing();
567 Double_t rz = - (z - det->GetRingZ(r->GetId()));
568
569 for (Int_t k = 0; k < nmod; k++) {
570 node->cd();
571 Double_t offz = (k % 2 == 1 ? modspace : 0);
572 TRotMatrix* rot = static_cast<TRotMatrix*>(rots->At(k));
573 TString name(Form("%s%c_module_%02d", det->GetName(), r->GetId(),k));
574 TString title(Form("%s%c Module %d", det->GetName(), r->GetId(),k));
575 TNode* mnod = new TNode(name.Data(), title.Data(), rshape,
576 0, 0, rz - siThick / 2
577 + TMath::Sign(offz,z), rot);
e939a978 578 mnod->SetLineColor(kYellow); //PH kYellow is the default line color in FMD
1a1fdef7 579 fNodes->Add(mnod);
580 } // for (Int_t k = 0 ; ...)
581 } // for (Int_t j = 0 ; ...)
582 } // for (Int_t i = 1 ; ...)
37c55dc0 583}
88cb7938 584
bf000c32 585//____________________________________________________________________
586void
587AliFMD::LoadPoints(Int_t /* track */)
588{
9f662337 589 // Store x, y, z of all hits in memory for display.
590 //
591 // Normally, the hits are drawn using TPolyMarker3D - however, that
592 // is not very useful for the FMD. Therefor, this member function
593 // is overloaded to make TMarker3D, via the class AliFMDPoints.
594 // AliFMDPoints is a local class.
bf000c32 595 //
596 if (!fHits) {
597 AliError(Form("fHits == 0. Name is %s",GetName()));
598 return;
599 }
600 Int_t nHits = fHits->GetEntriesFast();
601 if (nHits == 0) {
602 return;
603 }
604 Int_t tracks = gAlice->GetMCApp()->GetNtrack();
605 if (fPoints == 0) fPoints = new TObjArray(2 * tracks);
606
607 // Get geometry
608 AliFMDGeometry* geom = AliFMDGeometry::Instance();
609 geom->Init();
610 geom->InitTransformations();
611
612 // Now make markers for each hit
613 // AliInfo(Form("Drawing %d hits (have %d points) for track %d",
614 // nHits, fPoints->GetEntriesFast(), track));
615 for (Int_t ihit = 0; ihit < nHits; ihit++) {
616 AliFMDHit* hit = static_cast<AliFMDHit*>(fHits->At(ihit));
617 if (!hit) continue;
618 Double_t edep = hit->Edep();
619 Double_t m = hit->M();
620 Double_t poverm = (m == 0 ? 0 : hit->P());
621 Double_t absQ = TMath::Abs(hit->Q());
622 Bool_t bad = kFALSE;
623 // This `if' is to debug abnormal energy depositions. We trigger on
624 // p/m approx larger than or equal to a MIP, and a large edep - more
625 // than 1 keV - a MIP is 100 eV.
626 if (edep > absQ * absQ && poverm > 1) bad = kTRUE;
627
e939a978 628 AliFMDPoints* p1 = new AliFMDPoints(hit, kRed); //PH kRed is the default marker color in FMD
bf000c32 629 // AliPoints* p1 = new AliPoints();
630 // p1->SetMarkerColor(GetMarkerColor());
631 // p1->SetMarkerSize(GetMarkerSize());
632 // p1->SetPoint(0, hit->X(), hit->Y(), hit->Z());
633 p1->SetDetector(this);
634 p1->SetParticle(hit->GetTrack());
635 fPoints->AddAt(p1, hit->GetTrack());
636 if (bad) {
637 p1->SetMarkerColor(4);
638 // p1->SetMarkerSize(2 * GetMarkerSize());
639 }
640
641 Double_t x, y, z;
642 geom->Detector2XYZ(hit->Detector(), hit->Ring(), hit->Sector(),
643 hit->Strip(), x, y, z);
644 AliFMDPoints* p = new AliFMDPoints(hit, 3);
645 // AliPoints* p = new AliPoints();
646 // p->SetMarkerColor(3);
647 // p->SetMarkerSize(GetMarkerSize());
648 // p->SetPoint(0, x, y, z);
649 p->SetDetector(this);
650 p->SetParticle(hit->GetTrack());
651 p->SetXYZ(x, y, z);
652 p->SetMarkerColor(3);
653 fPoints->AddAt(p, tracks+hit->GetTrack());
654 if (bad) {
655 p->SetMarkerColor(5);
656 // p->SetMarkerSize(2 * GetMarkerSize());
657 }
658 // AliInfo(Form("Adding point at %d", tracks+hit->GetTrack()));
659 }
660}
661
4347b38f 662//____________________________________________________________________
663void
664AliFMD::DrawDetector()
fe4da5cc 665{
9f662337 666 // Draw a shaded view of the Forward multiplicity detector. This
667 // isn't really useful anymore.
f95a63c4 668 AliFMDDebug(10, ("\tDraw detector"));
fe4da5cc 669}
dc8af42e 670
4347b38f 671//____________________________________________________________________
17323043 672Int_t
02a27b50 673AliFMD::DistancetoPrimitive(Int_t, Int_t)
fe4da5cc 674{
fe4da5cc 675 // Calculate the distance from the mouse to the FMD on the screen
9f662337 676 // Dummy routine.
fe4da5cc 677 //
678 return 9999;
679}
dc8af42e 680
4347b38f 681//====================================================================
682//
683// Hit and Digit managment
684//
685//____________________________________________________________________
686void
687AliFMD::MakeBranch(Option_t * option)
688{
689 // Create Tree branches for the FMD.
37c4363a 690 //
691 // Options:
692 //
693 // H Make a branch of TClonesArray of AliFMDHit's
694 // D Make a branch of TClonesArray of AliFMDDigit's
695 // S Make a branch of TClonesArray of AliFMDSDigit's
696 //
4347b38f 697 const Int_t kBufferSize = 16000;
698 TString branchname(GetName());
699 TString opt(option);
700
701 if (opt.Contains("H", TString::kIgnoreCase)) {
702 HitsArray();
703 AliDetector::MakeBranch(option);
704 }
705 if (opt.Contains("D", TString::kIgnoreCase)) {
706 DigitsArray();
707 MakeBranchInTree(fLoader->TreeD(), branchname.Data(),
708 &fDigits, kBufferSize, 0);
709 }
710 if (opt.Contains("S", TString::kIgnoreCase)) {
711 SDigitsArray();
712 MakeBranchInTree(fLoader->TreeS(), branchname.Data(),
713 &fSDigits, kBufferSize, 0);
714 }
715}
716
717//____________________________________________________________________
718void
719AliFMD::SetTreeAddress()
720{
afddaa11 721 // Set branch address for the Hits, Digits, and SDigits Tree.
4347b38f 722 if (fLoader->TreeH()) HitsArray();
723 AliDetector::SetTreeAddress();
724
725 TTree *treeD = fLoader->TreeD();
726 if (treeD) {
727 DigitsArray();
728 TBranch* branch = treeD->GetBranch ("FMD");
729 if (branch) branch->SetAddress(&fDigits);
730 }
731
732 TTree *treeS = fLoader->TreeS();
733 if (treeS) {
734 SDigitsArray();
735 TBranch* branch = treeS->GetBranch ("FMD");
736 if (branch) branch->SetAddress(&fSDigits);
737 }
738}
739
4347b38f 740//____________________________________________________________________
741void
742AliFMD::SetHitsAddressBranch(TBranch *b)
b9a2d5e4 743{
37c4363a 744 // Set the TClonesArray to read hits into.
4347b38f 745 b->SetAddress(&fHits);
b9a2d5e4 746}
747
4347b38f 748//____________________________________________________________________
749void
750AliFMD::AddHit(Int_t track, Int_t *vol, Float_t *hits)
751{
752 // Add a hit to the hits tree
753 //
754 // The information of the two arrays are decoded as
755 //
756 // Parameters
757 // track Track #
758 // ivol[0] [UShort_t ] Detector #
759 // ivol[1] [Char_t ] Ring ID
760 // ivol[2] [UShort_t ] Sector #
761 // ivol[3] [UShort_t ] Strip #
762 // hits[0] [Float_t ] Track's X-coordinate at hit
763 // hits[1] [Float_t ] Track's Y-coordinate at hit
764 // hits[3] [Float_t ] Track's Z-coordinate at hit
765 // hits[4] [Float_t ] X-component of track's momentum
766 // hits[5] [Float_t ] Y-component of track's momentum
767 // hits[6] [Float_t ] Z-component of track's momentum
768 // hits[7] [Float_t ] Energy deposited by track
769 // hits[8] [Int_t ] Track's particle Id #
37c4363a 770 // hits[9] [Float_t ] Time when the track hit
771 //
772 //
69b696b9 773 AddHitByFields(track,
774 UShort_t(vol[0]), // Detector #
775 Char_t(vol[1]), // Ring ID
776 UShort_t(vol[2]), // Sector #
777 UShort_t(vol[3]), // Strip #
778 hits[0], // X
779 hits[1], // Y
780 hits[2], // Z
781 hits[3], // Px
782 hits[4], // Py
783 hits[5], // Pz
784 hits[6], // Energy loss
785 Int_t(hits[7]), // PDG
786 hits[8]); // Time
4347b38f 787}
788
789//____________________________________________________________________
54240c8d 790AliFMDHit*
69b696b9 791AliFMD::AddHitByFields(Int_t track,
792 UShort_t detector,
793 Char_t ring,
794 UShort_t sector,
795 UShort_t strip,
796 Float_t x,
797 Float_t y,
798 Float_t z,
799 Float_t px,
800 Float_t py,
801 Float_t pz,
802 Float_t edep,
803 Int_t pdg,
088f8e79 804 Float_t t,
805 Float_t l,
806 Bool_t stop)
b9a2d5e4 807{
4347b38f 808 // Add a hit to the list
dc8af42e 809 //
4347b38f 810 // Parameters:
811 //
812 // track Track #
813 // detector Detector # (1, 2, or 3)
814 // ring Ring ID ('I' or 'O')
815 // sector Sector # (For inner/outer rings: 0-19/0-39)
816 // strip Strip # (For inner/outer rings: 0-511/0-255)
817 // x Track's X-coordinate at hit
818 // y Track's Y-coordinate at hit
819 // z Track's Z-coordinate at hit
820 // px X-component of track's momentum
821 // py Y-component of track's momentum
822 // pz Z-component of track's momentum
823 // edep Energy deposited by track
824 // pdg Track's particle Id #
825 // t Time when the track hit
088f8e79 826 // l Track length through the material.
827 // stop Whether track was stopped or disappeared
4347b38f 828 //
829 TClonesArray& a = *(HitsArray());
830 // Search through the list of already registered hits, and see if we
831 // find a hit with the same parameters. If we do, then don't create
832 // a new hit, but rather update the energy deposited in the hit.
833 // This is done, so that a FLUKA based simulation will get the
834 // number of hits right, not just the enerrgy deposition.
ac4c3fbb 835 AliFMDHit* hit = 0;
4347b38f 836 for (Int_t i = 0; i < fNhits; i++) {
837 if (!a.At(i)) continue;
ac4c3fbb 838 hit = static_cast<AliFMDHit*>(a.At(i));
4347b38f 839 if (hit->Detector() == detector
840 && hit->Ring() == ring
841 && hit->Sector() == sector
842 && hit->Strip() == strip
843 && hit->Track() == track) {
f95a63c4 844 AliFMDDebug(1, ("already had a hit in FMD%d%c[%2d,%3d] for track # %d,"
8f6ee336 845 " adding energy (%f) to that hit (%f) -> %f",
846 detector, ring, sector, strip, track, edep, hit->Edep(),
847 hit->Edep() + edep));
4347b38f 848 hit->SetEdep(hit->Edep() + edep);
54240c8d 849 return hit;
4347b38f 850 }
851 }
852 // If hit wasn't already registered, do so know.
ac4c3fbb 853 hit = new (a[fNhits]) AliFMDHit(fIshunt, track, detector, ring, sector,
088f8e79 854 strip, x, y, z, px, py, pz, edep, pdg, t,
855 l, stop);
4347b38f 856 fNhits++;
54240c8d 857 return hit;
b9a2d5e4 858}
fe4da5cc 859
4347b38f 860//____________________________________________________________________
861void
69b696b9 862AliFMD::AddDigit(Int_t* digits, Int_t*)
fe4da5cc 863{
4347b38f 864 // Add a digit to the Digit tree
865 //
866 // Paramters
fe4da5cc 867 //
4347b38f 868 // digits[0] [UShort_t] Detector #
869 // digits[1] [Char_t] Ring ID
870 // digits[2] [UShort_t] Sector #
871 // digits[3] [UShort_t] Strip #
872 // digits[4] [UShort_t] ADC Count
873 // digits[5] [Short_t] ADC Count, -1 if not used
874 // digits[6] [Short_t] ADC Count, -1 if not used
875 //
69b696b9 876 AddDigitByFields(UShort_t(digits[0]), // Detector #
877 Char_t(digits[1]), // Ring ID
878 UShort_t(digits[2]), // Sector #
879 UShort_t(digits[3]), // Strip #
880 UShort_t(digits[4]), // ADC Count1
881 Short_t(digits[5]), // ADC Count2
882 Short_t(digits[6])); // ADC Count3
4347b38f 883}
884
885//____________________________________________________________________
886void
69b696b9 887AliFMD::AddDigitByFields(UShort_t detector,
888 Char_t ring,
889 UShort_t sector,
890 UShort_t strip,
891 UShort_t count1,
892 Short_t count2,
893 Short_t count3)
4347b38f 894{
895 // add a real digit - as coming from data
896 //
897 // Parameters
fe4da5cc 898 //
4347b38f 899 // detector Detector # (1, 2, or 3)
900 // ring Ring ID ('I' or 'O')
901 // sector Sector # (For inner/outer rings: 0-19/0-39)
902 // strip Strip # (For inner/outer rings: 0-511/0-255)
903 // count1 ADC count (a 10-bit word)
904 // count2 ADC count (a 10-bit word), or -1 if not used
905 // count3 ADC count (a 10-bit word), or -1 if not used
906 TClonesArray& a = *(DigitsArray());
907
908 new (a[fNdigits++])
909 AliFMDDigit(detector, ring, sector, strip, count1, count2, count3);
f95a63c4 910 AliFMDDebug(15, ("Adding digit # %5d/%5d for FMD%d%c[%2d,%3d]=(%d,%d,%d)",
911 fNdigits-1, a.GetEntriesFast(),
912 detector, ring, sector, strip, count1, count2, count3));
913
4347b38f 914}
915
916//____________________________________________________________________
917void
918AliFMD::AddSDigit(Int_t* digits)
919{
920 // Add a digit to the SDigit tree
921 //
922 // Paramters
b9a2d5e4 923 //
4347b38f 924 // digits[0] [UShort_t] Detector #
925 // digits[1] [Char_t] Ring ID
926 // digits[2] [UShort_t] Sector #
927 // digits[3] [UShort_t] Strip #
928 // digits[4] [Float_t] Total energy deposited
929 // digits[5] [UShort_t] ADC Count
930 // digits[6] [Short_t] ADC Count, -1 if not used
931 // digits[7] [Short_t] ADC Count, -1 if not used
932 //
69b696b9 933 AddSDigitByFields(UShort_t(digits[0]), // Detector #
934 Char_t(digits[1]), // Ring ID
935 UShort_t(digits[2]), // Sector #
936 UShort_t(digits[3]), // Strip #
937 Float_t(digits[4]), // Edep
938 UShort_t(digits[5]), // ADC Count1
939 Short_t(digits[6]), // ADC Count2
940 Short_t(digits[7])); // ADC Count3
4347b38f 941}
942
943//____________________________________________________________________
944void
69b696b9 945AliFMD::AddSDigitByFields(UShort_t detector,
946 Char_t ring,
947 UShort_t sector,
948 UShort_t strip,
949 Float_t edep,
950 UShort_t count1,
951 Short_t count2,
952 Short_t count3)
4347b38f 953{
954 // add a summable digit
955 //
956 // Parameters
b9a2d5e4 957 //
4347b38f 958 // detector Detector # (1, 2, or 3)
959 // ring Ring ID ('I' or 'O')
960 // sector Sector # (For inner/outer rings: 0-19/0-39)
961 // strip Strip # (For inner/outer rings: 0-511/0-255)
962 // edep Total energy deposited
963 // count1 ADC count (a 10-bit word)
964 // count2 ADC count (a 10-bit word), or -1 if not used
965 // count3 ADC count (a 10-bit word), or -1 if not used
37c4363a 966 //
4347b38f 967 TClonesArray& a = *(SDigitsArray());
968
969 new (a[fNsdigits++])
970 AliFMDSDigit(detector, ring, sector, strip, edep, count1, count2, count3);
fe4da5cc 971}
4347b38f 972
973//____________________________________________________________________
974void
975AliFMD::ResetSDigits()
d28dcc0d 976{
9f662337 977 // Reset number of digits and the digits array for this detector.
4347b38f 978 //
979 fNsdigits = 0;
980 if (fSDigits) fSDigits->Clear();
981}
982
983
984//____________________________________________________________________
985TClonesArray*
986AliFMD::HitsArray()
987{
988 // Initialize hit array if not already, and return pointer to it.
989 if (!fHits) {
990 fHits = new TClonesArray("AliFMDHit", 1000);
991 fNhits = 0;
992 }
993 return fHits;
994}
995
996//____________________________________________________________________
997TClonesArray*
998AliFMD::DigitsArray()
999{
1000 // Initialize digit array if not already, and return pointer to it.
1001 if (!fDigits) {
1002 fDigits = new TClonesArray("AliFMDDigit", 1000);
1003 fNdigits = 0;
1004 }
1005 return fDigits;
1006}
1007
1008//____________________________________________________________________
1009TClonesArray*
1010AliFMD::SDigitsArray()
1011{
1012 // Initialize digit array if not already, and return pointer to it.
1013 if (!fSDigits) {
1014 fSDigits = new TClonesArray("AliFMDSDigit", 1000);
1015 fNsdigits = 0;
1016 }
1017 return fSDigits;
1018}
1019
1020//====================================================================
1021//
1022// Digitization
1023//
1024//____________________________________________________________________
1025void
1026AliFMD::Hits2Digits()
1027{
37c4363a 1028 // Create AliFMDDigit's from AliFMDHit's. This is done by making a
1029 // AliFMDDigitizer, and executing that code.
1030 //
a3537838 1031 Warning("Hits2Digits", "Try not to use this method.\n"
1032 "Instead, use AliSimulator");
4347b38f 1033 AliRunDigitizer* manager = new AliRunDigitizer(1, 1);
1034 manager->SetInputStream(0, "galice.root");
1035 manager->SetOutputFile("H2Dfile");
dc8af42e 1036
4347b38f 1037 /* AliDigitizer* dig =*/ CreateDigitizer(manager);
1038 manager->Exec("");
99d864b7 1039 delete manager;
4347b38f 1040}
1041
1042//____________________________________________________________________
1043void
1044AliFMD::Hits2SDigits()
1045{
37c4363a 1046 // Create AliFMDSDigit's from AliFMDHit's. This is done by creating
1047 // an AliFMDSDigitizer object, and executing it.
1048 //
56b1929b 1049 AliFMDSDigitizer* digitizer = new AliFMDSDigitizer("galice.root");
56b1929b 1050 digitizer->Exec("");
99d864b7 1051 delete digitizer;
4347b38f 1052}
1053
dc8af42e 1054
4347b38f 1055//____________________________________________________________________
1056AliDigitizer*
1057AliFMD::CreateDigitizer(AliRunDigitizer* manager) const
1058{
1059 // Create a digitizer object
56b1929b 1060 AliFMDDigitizer* digitizer = new AliFMDDigitizer(manager);
56b1929b 1061 return digitizer;
4347b38f 1062}
b9a2d5e4 1063
4347b38f 1064//====================================================================
1065//
1066// Raw data simulation
1067//
1068//__________________________________________________________________
1069void
1070AliFMD::Digits2Raw()
1071{
37c4363a 1072 // Turn digits into raw data.
1073 //
e802be3e 1074 // This uses the class AliFMDRawWriter to do the job. Please refer
1075 // to that class for more information.
1076 AliFMDRawWriter writer(this);
1077 writer.Exec();
b9a2d5e4 1078}
1079
4347b38f 1080
1081//====================================================================
1082//
1083// Utility
1084//
1085//__________________________________________________________________
1086void
1087AliFMD::Browse(TBrowser* b)
1088{
37c4363a 1089 // Browse this object.
1090 //
f95a63c4 1091 AliFMDDebug(30, ("\tBrowsing the FMD"));
4347b38f 1092 AliDetector::Browse(b);
1a1fdef7 1093 b->Add(AliFMDGeometry::Instance());
4347b38f 1094}
1095
ee8a5fe6 1096//____________________________________________________________________
1097void
1098AliFMD::AddAlignableVolumes() const
1099{
1100 //
1101 // Create entries for alignable volumes associating the symbolic volume
1102 // name with the corresponding volume path. Needs to be syncronized with
1103 // eventual changes in the geometry.
1104 //
1105 // This code was made by Raffaele Grosso <rgrosso@mail.cern.ch>. I
1106 // (cholm) will probably want to change it. For one, I think it
1107 // should be the job of the geometry manager to deal with this.
9de78b35 1108 AliFMDGeometry::Instance()->SetAlignableVolumes();
1109#if 0
ee8a5fe6 1110 for(size_t f = 1; f <= 3; f++){ // Detector 1,2,3
1111 for(size_t tb = 0; tb <2 ; tb++){ // Top/Bottom
1112 char stb = tb == 0 ? 'T' : 'B';
1113 unsigned min = tb == 0 ? 0 : 5;
1114
8b1c66f0 1115 TString halfVol(Form("/ALIC_1/F%dM%c_%d", f, stb, f));
ee8a5fe6 1116 TString halfSym(halfVol);
1117 if(!gGeoManager->SetAlignableEntry(halfSym.Data(),halfVol.Data()))
1118 AliFatal(Form("Alignable entry %s not created. "
1119 "Volume path %s not valid",
1120 halfSym.Data(),halfVol.Data()));
1121 for(size_t io = 0; io < 2; io++){ // inner, outer
1122 if (f==1 && io==1) continue; // Only one ring in FMD1
8b1c66f0 1123 if(tb == 1 && io==1) min=10;
1124 char sio = (io == 0 ? 'I' : 'O');
ee8a5fe6 1125 unsigned nio = (io == 0 ? 3 : 9);
1126 unsigned max = (io == 0 ? 5 : 10) + min;
1127
1128 for(size_t i = min; i < max; i++) { // Modules
1129 TString modVol(Form("%s/F%c%cV_7%d/F%cSE_%d", halfVol.Data(),
1130 sio, stb, nio, sio, i));
1131 TString modSym(modVol);
1132 if(!gGeoManager->SetAlignableEntry(modSym.Data(),modVol.Data()))
1133 AliFatal(Form("Alignable entry %s not created. "
1134 "Volume path %s not valid",
1135 modSym.Data(), modVol.Data()));
1136 }
1137 }
1138 }
1139 }
9de78b35 1140#endif
ee8a5fe6 1141}
4347b38f 1142//___________________________________________________________________
1143//
1144// EOF
1145//