]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDBaseDigitizer.cxx
Fixed coding convention issues as given by the automatic
[u/mrichter/AliRoot.git] / FMD / AliFMDBaseDigitizer.cxx
CommitLineData
02a27b50 1/**************************************************************************
2 * Copyright(c) 2004, 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 **************************************************************************/
15/* $Id$ */
16/** @file AliFMDBaseDigitizer.cxx
17 @author Christian Holm Christensen <cholm@nbi.dk>
18 @date Mon Mar 27 12:38:26 2006
19 @brief FMD Digitizers implementation
20 @ingroup FMD_sim
21*/
22//////////////////////////////////////////////////////////////////////////////
23//
24// This class contains the procedures simulation ADC signal for the
25// Forward Multiplicity detector : Hits->Digits and Hits->SDigits
26//
27// Digits consists of
28// - Detector #
29// - Ring ID
30// - Sector #
31// - Strip #
32// - ADC count in this channel
33//
34// Digits consists of
35// - Detector #
36// - Ring ID
37// - Sector #
38// - Strip #
39// - Total energy deposited in the strip
40// - ADC count in this channel
41//
42// As the Digits and SDigits have so much in common, the classes
43// AliFMDDigitizer and AliFMDSDigitizer are implemented via a base
44// class AliFMDBaseDigitizer.
45//
46// +---------------------+
47// | AliFMDBaseDigitizer |
48// +---------------------+
49// ^
50// |
51// +----------+---------+
52// | |
53// +-----------------+ +------------------+
54// | AliFMDDigitizer | | AliFMDSDigitizer |
55// +-----------------+ +------------------+
56//
57// These classes has several paramters:
58//
59// fPedestal
60// fPedestalWidth
61// (Only AliFMDDigitizer)
62// Mean and width of the pedestal. The pedestal is simulated
63// by a Guassian, but derived classes my override MakePedestal
64// to simulate it differently (or pick it up from a database).
65//
66// fVA1MipRange
67// The dymamic MIP range of the VA1_ALICE pre-amplifier chip
68//
69// fAltroChannelSize
70// The largest number plus one that can be stored in one
71// channel in one time step in the ALTRO ADC chip.
72//
73// fSampleRate
74// How many times the ALTRO ADC chip samples the VA1_ALICE
75// pre-amplifier signal. The VA1_ALICE chip is read-out at
76// 10MHz, while it's possible to drive the ALTRO chip at
77// 25MHz. That means, that the ALTRO chip can have time to
78// sample each VA1_ALICE signal up to 2 times. Although it's
79// not certain this feature will be used in the production,
80// we'd like have the option, and so it should be reflected in
81// the code.
82//
83//
84// The shaping function of the VA1_ALICE is generally given by
85//
86// f(x) = A(1 - exp(-Bx))
87//
88// where A is the total charge collected in the pre-amp., and B is a
89// paramter that depends on the shaping time of the VA1_ALICE circut.
90//
91// When simulating the shaping function of the VA1_ALICe
92// pre-amp. chip, we have to take into account, that the shaping
93// function depends on the previous value of read from the pre-amp.
94//
95// That results in the following algorithm:
96//
97// last = 0;
98// FOR charge IN pre-amp. charge train DO
99// IF last < charge THEN
100// f(t) = (charge - last) * (1 - exp(-B * t)) + last
101// ELSE
102// f(t) = (last - charge) * exp(-B * t) + charge)
103// ENDIF
104// FOR i IN # samples DO
105// adc_i = f(i / (# samples))
106// DONE
107// last = charge
108// DONE
109//
110// Here,
111//
112// pre-amp. charge train
113// is a series of 128 charges read from the VA1_ALICE chip
114//
115// # samples
116// is the number of times the ALTRO ADC samples each of the 128
117// charges from the pre-amp.
118//
119// Where Q is the total charge collected by the VA1_ALICE
120// pre-amplifier. Q is then given by
121//
122// E S
123// Q = - -
124// e R
125//
126// where E is the total energy deposited in a silicon strip, R is the
127// dynamic range of the VA1_ALICE pre-amp (fVA1MipRange), e is the
128// energy deposited by a single MIP, and S ALTRO channel size in each
129// time step (fAltroChannelSize).
130//
131// The energy deposited per MIP is given by
132//
133// e = M * rho * w
134//
135// where M is the universal number 1.664, rho is the density of
136// silicon, and w is the depth of the silicon sensor.
137//
138// The final ADC count is given by
139//
140// C' = C + P
141//
142// where P is the (randomized) pedestal (see MakePedestal)
143//
144// This class uses the class template AliFMDMap<Type> to make an
145// internal cache of the energy deposted of the hits. The class
146// template is instantasized as
147//
148// typedef AliFMDMap<std::pair<Float_t, UShort_t> > AliFMDEdepMap;
149//
150// The first member of the values is the summed energy deposition in a
151// given strip, while the second member of the values is the number of
152// hits in a given strip. Using the second member, it's possible to
153// do some checks on just how many times a strip got hit, and what
154// kind of error we get in our reconstructed hits. Note, that this
155// information is currently not written to the digits tree. I think a
156// QA (Quality Assurance) digit tree is better suited for that task.
157// However, the information is there to be used in the future.
158//
159//
160// Latest changes by Christian Holm Christensen
161//
162//////////////////////////////////////////////////////////////////////////////
163
164// /1
165// | A(-1 + B + exp(-B))
166// | f(x) dx = ------------------- = 1
167// | B
168// / 0
169//
170// and B is the a parameter defined by the shaping time (fShapingTime).
171//
172// Solving the above equation, for A gives
173//
174// B
175// A = ----------------
176// -1 + B + exp(-B)
177//
178// So, if we define the function g: [0,1] -> [0:1] by
179//
180// / v
181// | Bu + exp(-Bu) - Bv - exp(-Bv)
182// g(u,v) = | f(x) dx = -A -----------------------------
183// | B
184// / u
185//
186// we can evaluate the ALTRO sample of the VA1_ALICE pre-amp between
187// any two times (u, v), by
188//
189//
190// B Bu + exp(-Bu) - Bv - exp(-Bv)
191// C = Q g(u,v) = - Q ---------------- -----------------------------
192// -1 + B + exp(-B) B
193//
194// Bu + exp(-Bu) - Bv - exp(-Bv)
195// = - Q -----------------------------
196// -1 + B + exp(-B)
197//
198
090026bf 199#include <TMath.h>
02a27b50 200#include <TTree.h> // ROOT_TTree
201//#include <TRandom.h> // ROOT_TRandom
f95a63c4 202// #include <AliLog.h> // ALILOG_H
203#include "AliFMDDebug.h" // Better debug macros
02a27b50 204#include "AliFMDBaseDigitizer.h" // ALIFMDDIGITIZER_H
205#include "AliFMD.h" // ALIFMD_H
206#include "AliFMDGeometry.h" // ALIFMDGEOMETRY_H
207#include "AliFMDDetector.h" // ALIFMDDETECTOR_H
208#include "AliFMDRing.h" // ALIFMDRING_H
209#include "AliFMDHit.h" // ALIFMDHIT_H
6169f936 210// #include "AliFMDDigit.h" // ALIFMDDIGIT_H
02a27b50 211#include "AliFMDParameters.h" // ALIFMDPARAMETERS_H
6169f936 212// #include <AliRunDigitizer.h> // ALIRUNDIGITIZER_H
02a27b50 213//#include <AliRun.h> // ALIRUN_H
214#include <AliLoader.h> // ALILOADER_H
42f1b2f5 215#include <AliRun.h> // ALILOADER_H
02a27b50 216#include <AliRunLoader.h> // ALIRUNLOADER_H
ef8e8623 217#include <TRandom.h>
02a27b50 218
219//====================================================================
220ClassImp(AliFMDBaseDigitizer)
221#if 0
222 ; // This is here to keep Emacs for indenting the next line
223#endif
224
225//____________________________________________________________________
226AliFMDBaseDigitizer::AliFMDBaseDigitizer()
ef8e8623 227 : fFMD(0),
228 fRunLoader(0),
b5ee4425 229 fEdep(AliFMDMap::kMaxDetectors,
230 AliFMDMap::kMaxRings,
231 AliFMDMap::kMaxSectors,
232 AliFMDMap::kMaxStrips),
b2e6f0b0 233 fShapingTime(6),
2180cab3 234 fStoreTrackRefs(kTRUE),
235 fIgnoredLabels(0)
02a27b50 236{
42f1b2f5 237 AliFMDDebug(1, ("Constructed"));
02a27b50 238 // Default ctor - don't use it
239}
240
241//____________________________________________________________________
242AliFMDBaseDigitizer::AliFMDBaseDigitizer(AliRunDigitizer* manager)
243 : AliDigitizer(manager, "AliFMDBaseDigitizer", "FMD Digitizer base class"),
ef8e8623 244 fFMD(0),
02a27b50 245 fRunLoader(0),
021f1396 246 fEdep(0), // nDet==0 means 51200 slots
b2e6f0b0 247 fShapingTime(6),
2180cab3 248 fStoreTrackRefs(kTRUE),
249 fIgnoredLabels(0)
02a27b50 250{
251 // Normal CTOR
42f1b2f5 252 AliFMDDebug(1, ("Constructed"));
02a27b50 253 SetShapingTime();
254}
255
256//____________________________________________________________________
257AliFMDBaseDigitizer::AliFMDBaseDigitizer(const Char_t* name,
258 const Char_t* title)
259 : AliDigitizer(name, title),
ef8e8623 260 fFMD(0),
02a27b50 261 fRunLoader(0),
021f1396 262 fEdep(0), // nDet==0 means 51200 slots
b2e6f0b0 263 fShapingTime(6),
2180cab3 264 fStoreTrackRefs(kTRUE),
265 fIgnoredLabels(0)
02a27b50 266{
267 // Normal CTOR
42f1b2f5 268 AliFMDDebug(1, (" Constructed"));
02a27b50 269 SetShapingTime();
270}
271
272//____________________________________________________________________
273AliFMDBaseDigitizer::~AliFMDBaseDigitizer()
274{
275 // Destructor
276}
277
09b6c804 278//____________________________________________________________________
279AliFMDBaseDigitizer&
280AliFMDBaseDigitizer::operator=(const AliFMDBaseDigitizer& o)
281{
282 //
283 // Assignment operator
284 //
285 // Return:
286 // Reference to this object
287 //
288 AliDigitizer::operator=(o);
289 fRunLoader = o.fRunLoader;
290 fEdep = o.fEdep;
291 fShapingTime = o.fShapingTime;
292 fStoreTrackRefs = o.fStoreTrackRefs;
293 fIgnoredLabels = o.fIgnoredLabels;
294 return *this;
295}
296
02a27b50 297//____________________________________________________________________
298Bool_t
299AliFMDBaseDigitizer::Init()
300{
ef8e8623 301 // Initialization. Get a pointer to the parameter manager, and
302 // initialize it.
02a27b50 303 AliFMDParameters::Instance()->Init();
ef8e8623 304 if (AliLog::GetDebugLevel("FMD","") >= 15)
305 AliFMDParameters::Instance()->Print("");
42f1b2f5 306 return kTRUE;
307}
308
02a27b50 309//____________________________________________________________________
310UShort_t
ef8e8623 311AliFMDBaseDigitizer::MakePedestal(UShort_t detector,
312 Char_t ring,
313 UShort_t sector,
314 UShort_t strip) const
02a27b50 315{
ef8e8623 316 // Make a pedestal. The pedestal value is drawn from a Gaussian
317 // distribution. The mean of the distribution is the measured
318 // pedestal, and the width is the measured noise.
319 AliFMDParameters* param =AliFMDParameters::Instance();
320 Float_t mean =param->GetPedestal(detector,ring,sector,strip);
321 Float_t width =param->GetPedestalWidth(detector,ring,sector,strip);
322 return UShort_t(TMath::Max(gRandom->Gaus(mean, width), 0.));
02a27b50 323}
324
325//____________________________________________________________________
326void
ef8e8623 327AliFMDBaseDigitizer::AddContribution(UShort_t detector,
328 Char_t ring,
329 UShort_t sector,
330 UShort_t strip,
83ad576a 331 Float_t edep,
b2e6f0b0 332 Bool_t isPrimary,
faf80567 333 Int_t nTrack,
334 Int_t* tracknos)
02a27b50 335{
ef8e8623 336 // Add edep contribution from (detector,ring,sector,strip) to cache
337 AliFMDParameters* param = AliFMDParameters::Instance();
8d00dfa3 338 AliFMDDebug(10, ("Adding contribution %7.5f for FMD%d%c[%2d,%3d] "
339 " from %d tracks (%s)",
340 edep,
341 detector,
342 ring,
343 sector,
344 strip,
345 nTrack,
346 (isPrimary ? "primary" : "secondary")));
ef8e8623 347 // Check if strip is `dead'
348 if (param->IsDead(detector, ring, sector, strip)) {
349 AliFMDDebug(5, ("FMD%d%c[%2d,%3d] is marked as dead",
350 detector, ring, sector, strip));
351 return;
02a27b50 352 }
ef8e8623 353 // Check if strip is out-side read-out range
354 // if (strip < minstrip || strip > maxstrip) {
355 // AliFMDDebug(5, ("FMD%d%c[%2d,%3d] is outside range [%3d,%3d]",
356 // detector,ring,sector,strip,minstrip,maxstrip));
357 // continue;
358 // }
02a27b50 359
b2e6f0b0 360 AliFMDEdepHitPair& entry = fEdep(detector, ring, sector, strip);
361
ef8e8623 362 // Give warning in case of double sdigit
b2e6f0b0 363 if (entry.fEdep != 0)
364 AliFMDDebug(5, ("Double digit in FMD%d%c[%2d,%3d]",
ef8e8623 365 detector, ring, sector, strip));
02a27b50 366
ef8e8623 367 // Sum energy deposition
8d00dfa3 368 Int_t oldN = entry.fN;
b2e6f0b0 369 entry.fEdep += edep;
faf80567 370 entry.fN += nTrack;
371 if (isPrimary) entry.fNPrim += nTrack;
b2e6f0b0 372 if (fStoreTrackRefs) {
8d00dfa3 373 if (entry.fLabels.fN < entry.fN) {
374 AliFMDDebug(15, ("== New label array size %d, was %d, added %d",
375 entry.fN, entry.fLabels.fN, nTrack));
376 entry.fLabels.Set(entry.fN);
377 }
378 for (Int_t i = 0; i < nTrack; i++) {
379 AliFMDDebug(15, ("=> Setting track label # %d", oldN+i));
faf80567 380 entry.fLabels[oldN + i] = tracknos[i];
8d00dfa3 381 AliFMDDebug(15, ("<= Setting track label # %d", oldN+i));
382 }
b2e6f0b0 383 }
8d00dfa3 384 AliFMDDebug(15,("Adding contribution %f to FMD%d%c[%2d,%3d] (%f) track %d",
385 edep, detector, ring, sector, strip,
386 entry.fEdep, (nTrack > 0 ? tracknos[0] : -1)));
83ad576a 387
02a27b50 388}
389
390//____________________________________________________________________
391void
ef8e8623 392AliFMDBaseDigitizer::DigitizeHits() const
02a27b50 393{
394 // For the stored energy contributions in the cache (fEdep), convert
395 // the energy signal to ADC counts, and store the created digit in
396 // the digits array (AliFMD::fDigits)
397 //
42f1b2f5 398 AliFMDDebug(5, ("Will now digitize all the summed signals"));
2180cab3 399 fIgnoredLabels = 0;
02a27b50 400 AliFMDGeometry* geometry = AliFMDGeometry::Instance();
401
2aeec17d 402 TArrayI counts(4);
02a27b50 403 for (UShort_t detector=1; detector <= 3; detector++) {
ef8e8623 404 AliFMDDebug(10, ("Processing hits in FMD%d", detector));
02a27b50 405 // Get pointer to subdetector
406 AliFMDDetector* det = geometry->GetDetector(detector);
407 if (!det) continue;
408 for (UShort_t ringi = 0; ringi <= 1; ringi++) {
409 Char_t ring = ringi == 0 ? 'I' : 'O';
ef8e8623 410 AliFMDDebug(10, (" Processing hits in FMD%d%c", detector,ring));
02a27b50 411 // Get pointer to Ring
412 AliFMDRing* r = det->GetRing(ring);
413 if (!r) continue;
414
415 // Get number of sectors
416 UShort_t nSectors = UShort_t(360. / r->GetTheta());
417 // Loop over the number of sectors
418 for (UShort_t sector = 0; sector < nSectors; sector++) {
ef8e8623 419 AliFMDDebug(10, (" Processing hits in FMD%d%c[%2d]",
f95a63c4 420 detector,ring,sector));
02a27b50 421 // Get number of strips
422 UShort_t nStrips = r->GetNStrips();
423 // Loop over the stips
424 Float_t last = 0;
425 for (UShort_t strip = 0; strip < nStrips; strip++) {
426 // Reset the counter array to the invalid value -1
427 counts.Reset(-1);
428 // Reset the last `ADC' value when we've get to the end of a
429 // VA1_ALICE channel.
430 if (strip % 128 == 0) last = 0;
431
b2e6f0b0 432 const AliFMDEdepHitPair& entry = fEdep(detector,ring,sector,strip);
433 Float_t edep = entry.fEdep;
434 UShort_t ntot = entry.fN;
435 UShort_t nprim = entry.fNPrim;
436 const TArrayI& labels = entry.fLabels;
83ad576a 437 if (edep > 0)
438 AliFMDDebug(15, ("Edep = %f for FMD%d%c[%2d,%3d]",
439 edep, detector, ring, sector, strip));
02a27b50 440 ConvertToCount(edep, last, detector, ring, sector, strip, counts);
441 last = edep;
8b26caab 442
83ad576a 443
8b26caab 444 // The following line was introduced - wrongly - by Peter
445 // Hristov. It _will_ break the digitisation and the
446 // following reconstruction. The behviour of the
447 // digitisation models exactly the front-end as it should
448 // (no matter what memory concuption it may entail). The
449 // check should be on zero suppression, since that's what
450 // models the front-end - if zero suppression is turned on
451 // in the front-end, then we can suppress empty digits -
452 // otherwise we shoud never do that. Note, that the line
453 // affects _both_ normal digitisation and digitisation for
454 // summable digits, since the condition is on the energy
455 // deposition and not on the actual number of counts. If
456 // this line should go anywhere, it should be in the
457 // possible overloaded AliFMDSDigitizer::AddDigit - not
458 // here.
459 //
460 // if (edep<=0) continue;
ef8e8623 461 AddDigit(detector, ring, sector, strip, edep,
02a27b50 462 UShort_t(counts[0]), Short_t(counts[1]),
83ad576a 463 Short_t(counts[2]), Short_t(counts[3]),
b2e6f0b0 464 ntot, nprim, labels);
ef8e8623 465 AliFMDDebug(15, (" Adding digit in FMD%d%c[%2d,%3d]=%d",
faf80567 466 detector,ring,sector,strip,counts[0]));
02a27b50 467#if 0
468 // This checks if the digit created will give the `right'
469 // number of particles when reconstructed, using a naiive
470 // approach. It's here only as a quality check - nothing
471 // else.
472 CheckDigit(digit, fEdep(detector, ring, sector, strip).fN,
473 counts);
474#endif
475 } // Strip
476 } // Sector
477 } // Ring
478 } // Detector
2180cab3 479 if (fIgnoredLabels > 0)
480 AliWarning(Form("%d track labels could not be associated with digits "
481 "due to limited storage facilities in AliDigit",
482 fIgnoredLabels));
02a27b50 483}
484
485//____________________________________________________________________
486void
487AliFMDBaseDigitizer::ConvertToCount(Float_t edep,
488 Float_t last,
489 UShort_t detector,
490 Char_t ring,
491 UShort_t sector,
492 UShort_t strip,
493 TArrayI& counts) const
494{
495 // Convert the total energy deposited to a (set of) ADC count(s).
496 //
497 // This is done by
498 //
499 // Energy_Deposited ALTRO_Channel_Size
500 // ADC = -------------------------- ------------------- + pedestal
501 // Energy_Deposition_Of_1_MIP VA1_ALICE_MIP_Range
502 //
503 // Energy_Deposited fAltroChannelSize
504 // = --------------------------------- ----------------- + pedestal
505 // 1.664 * Si_Thickness * Si_Density fVA1MipRange
506 //
507 //
508 // = Energy_Deposited * ConversionFactor + pedestal
509 //
510 // However, this is modified by the response function of the
511 // VA1_ALICE pre-amp. chip in case we are doing oversampling of the
512 // VA1_ALICE output.
513 //
514 // In that case, we get N=fSampleRate values of the ADC, and the
515 // `EnergyDeposited' is a function of which sample where are
516 // calculating the ADC for
517 //
518 // ADC_i = f(EnergyDeposited, i/N, Last) * ConversionFactor + pedestal
519 //
520 // where Last is the Energy deposited in the previous strip.
521 //
522 // Here, f is the shaping function of the VA1_ALICE. This is given
523 // by
524 //
525 // | (E - l) * (1 - exp(-B * t) + l if E > l
526 // f(E, t, l) = <
527 // | (l - E) * exp(-B * t) + E otherwise
528 //
529 //
530 // = E + (l - E) * ext(-B * t)
531 //
532 AliFMDParameters* param = AliFMDParameters::Instance();
83ad576a 533 Float_t convF = (param->GetDACPerMIP() / param->GetEdepMip() *
534 param->GetPulseGain(detector,ring,sector,strip));
a9579262 535 Int_t ped = MakePedestal(detector,ring,sector,strip);
536 Int_t maxAdc = param->GetAltroChannelSize()-1;
537 if (maxAdc < 0) {
538 AliWarning(Form("Maximum ADC is %d < 0, forcing it to 1023", maxAdc));
539 maxAdc = 1023;
540 }
02a27b50 541 UShort_t rate = param->GetSampleRate(detector,ring,sector,strip);
ef8e8623 542 AliFMDDebug(15, ("Sample rate for FMD%d%c[%2d,%3d] = %d",
83ad576a 543 detector, ring, sector, strip, rate));
ef8e8623 544 if (rate < 1 || rate > 4) {
545 AliWarning(Form("Invalid sample rate for for FMD%d%c[%2d,%3d] = %d",
546 detector, ring, sector, strip, rate));
547 rate = 1;
548 }
549
02a27b50 550 // In case we don't oversample, just return the end value.
551 if (rate == 1) {
a9579262 552 Float_t a = edep * convF + ped;
553 if (a < 0) a = 0;
554 counts[0] = UShort_t(TMath::Min(a, Float_t(maxAdc)));
ef8e8623 555 AliFMDDebug(15, ("FMD%d%c[%2d,%3d]: converting ELoss %f to "
a9579262 556 "ADC %4d (%f,%d)",
557 detector,ring,sector,strip,edep,counts[0],convF,ped));
02a27b50 558 return;
559 }
83ad576a 560
02a27b50 561
562 // Create a pedestal
563 Float_t b = fShapingTime;
564 for (Ssiz_t i = 0; i < rate; i++) {
2aeec17d 565 Float_t t = Float_t(i) / rate + 1./rate;
a9579262 566 Float_t s = edep + (last - edep) * TMath::Exp(-b * t);
567 Float_t a = Int_t(s * convF + ped);
568 if (a < 0) a = 0;
569 counts[i] = UShort_t(TMath::Min(a, Float_t(maxAdc)));
02a27b50 570 }
83ad576a 571 AliFMDDebug(15, ("Converted edep = %f to ADC (%x,%x,%x,%x) "
572 "[gain: %f=(%f/%f*%f), pedestal: %d, rate: %d]",
573 edep, counts[0], counts[1], counts[2], counts[3],
574 convF, param->GetDACPerMIP(),param->GetEdepMip(),
575 param->GetPulseGain(detector,ring,sector,strip),
576 ped, rate));
02a27b50 577}
578
ef8e8623 579//____________________________________________________________________
580void
b2e6f0b0 581AliFMDBaseDigitizer::AddDigit(UShort_t detector,
582 Char_t ring,
583 UShort_t sector,
584 UShort_t strip,
585 Float_t /* edep */,
586 UShort_t count1,
587 Short_t count2,
588 Short_t count3,
589 Short_t count4,
8d00dfa3 590 UShort_t ntot,
b2e6f0b0 591 UShort_t /* nprim */,
faf80567 592 const TArrayI& refs) const
ef8e8623 593{
594 // Add a digit or summable digit
ef8e8623 595 fFMD->AddDigitByFields(detector, ring, sector, strip,
8d00dfa3 596 count1, count2, count3, count4,
597 ntot, fStoreTrackRefs ? refs.fArray : 0);
2180cab3 598 if (fStoreTrackRefs && ntot > 3) fIgnoredLabels += ntot - 3;
ef8e8623 599}
02a27b50 600
ef8e8623 601//____________________________________________________________________
602TTree*
603AliFMDBaseDigitizer::MakeOutputTree(AliLoader* loader)
604{
605 // Create output tree using loader. If the passed loader differs
606 // from the currently set loader in the FMD object, reset the FMD
607 // loader to be the passed loader. This is for the cases wher the
608 // output is different from the output.
609 AliFMDDebug(5, ("Making digits tree"));
610 loader->LoadDigits("UPDATE"); // "RECREATE");
611 TTree* out = loader->TreeD();
612 if (!out) loader->MakeTree("D");
613 out = loader->TreeD();
614 if (out) {
615 out->Reset();
616 if (loader != fFMD->GetLoader())
617 fFMD->SetLoader(loader);
618 fFMD->MakeBranch("D");
619 }
620 return out;
621}
622
623//____________________________________________________________________
624void
625AliFMDBaseDigitizer::StoreDigits(AliLoader* loader)
626{
627 // Write the digits to disk
628 AliFMDDebug(5, ("Storing %d digits", fFMD->Digits()->GetEntries()));
629 loader->WriteDigits("OVERWRITE");
630 loader->UnloadDigits();
631 // Reset the digits in the AliFMD object
632 fFMD->ResetDigits();
633}
02a27b50 634
635//____________________________________________________________________
636//
637// EOF
638//
639
640
641
642