]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMD.h
Violation fixes
[u/mrichter/AliRoot.git] / FMD / AliFMD.h
CommitLineData
d28dcc0d 1#ifndef ALIFMD_H
2#define ALIFMD_H
4347b38f 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4 * reserved.
5 *
6 * Latest changes by Christian Holm Christensen <cholm@nbi.dk>
7 *
8 * See cxx source for full Copyright notice
9 */
c2fc1258 10/** @file AliFMD.h
11 @author Christian Holm Christensen <cholm@nbi.dk>
12 @date Sun Mar 26 17:59:37 2006
13 @brief Declaration of AliFMD detector driver
14*/
9f662337 15/** @mainpage ALICE FMD Off-line code
f8616692 16
17 @b Contents
18 - @ref intro
19 - @ref structure
e2c858f2 20 - @ref base (see also @ref FMD_base)
21 - @ref sim (see also @ref FMD_sim)
22 - @ref rec (see also @ref FMD_rec)
23 - @ref flow (see also @ref FMD_flow)
24 - @ref ana (see also @ref FMD_ana)
25 - @ref util (see also @ref FMD_util)
26 - @ref script (see also @ref FMD_script)
f8616692 27 - @ref quick
28 - @ref authors
29
9f662337 30 @section intro Introduction:
31
32 This file contains a short overview of the FMD code. It is by no
33 means authoritative - only the code is good for that. However,
34 I'll try to explain things a bit here.
35
36 @section structure Structure:
37
38 There are 4 libraries build for the FMD. These are
39
40 - libFMDbase: This contains the basic stuff, like data classes and
41 managers.
42 - libFMDsim: This contains code used by the simulation only. That
43 includes the detector class AliFMD and it's derivatives. It
44 also contains the code for building the geometry, as well as the
45 digitisers and raw data writer.
46 - libFMDrec: Code needed for the reconstruction. This include the
47 reconstruction code itself, as well as a raw data reader.
48 - libFMDutil: This is a special library that contains various
49 utility classes for the FMD expert/developer/tester. It
50 includes code to read all data produced by the FMD, a simple
51 event display, and code to make fake calibration and alignment
52 data. This library is @e not loaded by aliroot
53 automatically. The user has to load it herself:
54 @code
55 gSystem->Load("libFMDutil.so");
56 @endcode
57 The content of these libraries is detailed more below.
f8616692 58
9f662337 59 @subsection base libFMDbase:
60
61 This currently (18th or March 2006) contains the classes
62
63 - AliFMDBaseDigit, AliFMDDigit, AliFMDSDigit: Base class for
64 digits, real digits, and summable digits. The are all data
65 classes that holds the ADC value(s) for a single strip.
66 - AliFMDBoolMap: A map of booleans, one for each strip.
67 - AliFMDUShortMap: A map of unsigned short integers, one for each
68 strip.
69 - AliFMDDetector, AliFMD1, AliFMD2, AliFMD3: 3 classes that holds
70 the parameters for each of the 3 FMD sub-detectors. These
71 derive from AliFMDDetector, and are managed by AliFMDGeometry.
72 Each of these also contains the translation from sensor
73 reference frame to global reference frame.
74 - AliFMDRing: Parameters for the FMD rings (inner and outer type).
75 These are managed by AliFMDGeometry.
76 - AliFMDGeometry: Manager of FMD geometry data. All code queries
77 this manager for geometry parameters, so that the data is always
78 consistent.
79 - AliFMDParameters: Manager of FMD parameters, like calibration
80 parameters. This class fetches data from CDB if necessary.
81 All code queries this manager for parameters, so that the data
82 is always consistent.
83 - AliFMDCalibPedestal, AliFMDCalibGain, AliFMDCalibSampleRate,
84 AliFMDAltroMapping: Containers of calibration parameters. These
85 correspond to the pedestal and its width, the gain of each
86 strip, the oversampling rate used in read-out, and the map from
87 hardware address to detector.
88 - AliFMDAltroIO, AliFMDAltroReader, AliFMDAltroWriter: Low-level
89 classes to do input/output on ALTRO formated buffers.
90
91
92
93 @subsection sim libFMDsim:
94
95 This currently (18th or March 2006) contains the classes
96
97 - AliFMDEdepMap: Cache of energy deposited and total number of
98 hits for each strip. The digitiser AliFMDDigitizer uses this to
99 store simulation data before making digits.
100 - AliFMDHit: A hit in the FMD active elements, as described by the
101 simulation back-end during transport.
102 - AliFMD, AliFMDv0, AliFMDv1: Simulation drivers for the FMD.
103 AliFMD is the base class. AliFMDv0 corresponds to a simulation
104 where no hits are created, but the material distribution is
105 right. AliFMDv1 is like AliFMDv0, except that hits are
106 produced.
107 - AliFMDGeometryBuilder: Build the FMD geometry in terms of TGeo
108 objects. The information for building the geometry is retrieved
109 from AliFMDGeometry.
110 - AliFMDBaseDigitizer, AliFMDDigitizer, AliFMDSDigitizer: Base
111 class for the digitisers. AliFMDDigitizer makes `real' digits
112 (AliFMDDigit) from hits, and AliFMDSDigitizer makes summable
113 digits from hits.
114 - AliFMDRawWriter: Writes a pseudo raw data file from the digits
115 created by the digitisers. It uses the AliFMDAltroMapping from
116 AliFMDParameters to make the mapping from detector coordinates
117 to hardware addresses.
118
119 @subsection rec libFMDrec:
120
121 This currently (18th or March 2006) contains the classes
122
123 - AliFMDReconstructor: Reconstruct (in a naiive way) the charged
124 particle multiplicity in the FMD strips. This also writes an
125 AliESDFMD object to the ESD files (that class is in libESD).
126
127 - AliFMDRecPoint: Reconstructed point in the FMD. These objects
128 are made AliFMDReconstructor.
129
130 - AliFMDRawReader: Classes to read raw data files.
131
e2c858f2 132 @subsection flow libFMDflow:
133
134 This library contains flow analysis code that works similar to
135 histograms.
136
137 @subsection ana libFMDanalysis:
138
139 This library contains analysis code.
140
141
9f662337 142 @subsection util libFMDutil:
143
144 This currently (18th or March 2006) contains the classes
145
146 - AliFMDInput, AliFMDInputHits, AliFMDInputDigits,
147 AliFMDInputSDigits, AliFMDInputRecPoints: Base class, and
148 concrete classes to read in FMD generated data. These provide a
149 simple and unified way of getting the data. Hooks are defined
150 to process hits, tracks, digits, and reconstructed points, as
151 well as geometry and ESD data. See for example the scripts
152 @c DrawHits.C, @c DrawHitsDigits.C, @c DrawHitsRecs.C, @c
153 DrawDigitsRecs.C in the @c FMD/scripts sub-directory.
154
155 - AliFMDDisplay: Simple event display for FMD data, including
156 hits, digits, reconstructed points and ESD data.
157
158 - AliFMDCalibFaker, AliFMDAlignFaker: Classes to write fake (or
159 dummy) calibration and alignment data. These derive from
160 TTask.
161
9b48326f 162 @section script Scripts
163
164 Most scripts live in @c FMD/scripts. The notiable exceptions are
165 @ref Simulate.C, @ref Reconstruct.C, and @ref Config.C
166
f8616692 167 @section quick Quick start
168
169 First, install ROOT. Then Install TGeant3:
170 @verbatim
171 > cd ~/
172 > mkdir alice
173 > cd alice
174 > cvs -d :pserver:cvs@root.cern.ch:/user/cvs login
175 Password: cvs
176 > cvs -d :pserver:cvs@root.cern.ch:/user/cvs co geant3
177 > cd geant3
178 > make
179 @endverbatim
180
181 Now you can install AliRoot
182 @verbatim
183 > cd ../
184 > cvs -d :pserver:cvs@alisoft.cern.ch:/soft/cvsroot login
185 Password: <empty>
186 > cvs -d :pserver:cvs@alisoft.cern.ch:/soft/cvsroot co AliRoot
187 > cd AliRoot
188 > export ALICE_TARGET=`root-config --arch`
189 > export ALICE=${HOME}/alice
190 > export ALICE_ROOT=${ALICE}/AliRoot
191 > export ALICE_LEVEL=new
192 > export LD_LIBRARY_PATH=${ALICE_ROOT}/lib/tgt_${ALICE_TERGET}:${LD_LIBRARY_PATH}
193 > export PATH=${ALICE_ROOT}/bin/tgt_${ALICE_TERGET}:${PATH}
194 > export G3SYS=${ALICE}/geant3
195 > make
196 @endverbatim
197
198 To simulate one event, do something like
199
200 @verbatim
201 > aliroot ${ALICE_ROOT}/FMD/Simulate.C
202 @endverbatim
203
204 To reconstruct the generated event, do
205 @verbatim
206 > aliroot ${ALICE_ROOT}/FMD/Reconstruct.C
207 @endverbatim
208
209 Now, open the file `AliESDs.root' in AliRoot, and browse through that.
210
9f662337 211 @section authors Authors:
212
213 - Alla Maevskaya <Alla.Maevskaia@cern.ch>
214 - Christian Holm Christensen <cholm@nbi.dk>
215*/
216/** @defgroup FMD_sim Simulation */
3da30618 217
37c4363a 218//____________________________________________________________________
219//
220// Manager class for the FMD - Base class.
088f8e79 221// AliFMDv1, AliFMDv0, and AliFMDAlla
222// provides concrete implementations.
223// This class is sooooo crowded
37c4363a 224//
9f662337 225#ifndef ALIDETECTOR_H
4347b38f 226# include <AliDetector.h>
227#endif
b2e6f0b0 228#ifndef ROOT_TArrayI
229# include <TArrayI.h>
230#endif
1a1fdef7 231class TBranch;
232class TClonesArray;
233class TBrowser;
bf000c32 234class TMarker3DBox;
b2e6f0b0 235class TArrayI;
1a1fdef7 236class AliDigitizer;
54240c8d 237class AliFMDHit;
4347b38f 238
239//____________________________________________________________________
9f662337 240/** @class AliFMD AliFMD.h <FMD/AliFMD.h>
241 @brief Forward Multiplicity Detector based on Silicon wafers.
242 This class is the driver for especially simulation.
243
244 The Forward Multiplicity Detector consists of 3 sub-detectors FMD1,
245 FMD2, and FMD3, each of which has 1 or 2 rings of silicon sensors.
246
247 This is the base class for all FMD manager classes.
248
249 The actual code is done by various separate classes. Below is
250 diagram showing the relationship between the various FMD classes
251 that handles the simulation
252
253 @verbatim
254 +----------+ +----------+
255 | AliFMDv1 | | AliFMDv0 |
256 +----------+ +----------+
257 | | +-----------------+
258 +----+--------------+ +--| AliFMDDigitizer |
259 | | +-----------------+
260 | +---------------------+ |
261 | +--| AliFMDBaseDigitizer |<--+
262 V 1 | +---------------------+ |
263 +--------+<>--+ | +------------------+
264 | AliFMD | +--| AliFMDSDigitizer |
265 +--------+<>--+ +------------------+
266 1 | +---------------------+
267 +--| AliFMDReconstructor |
268 +---------------------+
269 @endverbatim
270
271 - AliFMD
272 This defines the interface for the various parts of AliROOT that
273 uses the FMD, like AliFMDSimulator, AliFMDDigitizer,
274 AliFMDReconstructor, and so on.
275 - AliFMDv0
276 This is a concrete implementation of the AliFMD interface.
277 It is the responsibility of this class to create the FMD
278 geometry.
279 - AliFMDv1
280 This is a concrete implementation of the AliFMD interface.
281 It is the responsibility of this class to create the FMD
282 geometry, process hits in the FMD, and serve hits and digits to
283 the various clients.
284 - AliFMDSimulator
285 This is the base class for the FMD simulation tasks. The
286 simulator tasks are responsible to implment the geoemtry, and
287 process hits.
288 - AliFMDReconstructor
289 This is a concrete implementation of the AliReconstructor that
290 reconstructs pseudo-inclusive-multiplicities from digits (raw or
291 from simulation)
292
293 Calibration and geometry parameters are managed by separate
294 singleton managers. These are AliFMDGeometry and
295 AliFMDParameters. Please refer to these classes for more
296 information on these.
297 */
4347b38f 298class AliFMD : public AliDetector
299{
fe4da5cc 300public:
9f662337 301 /** Default constructor. Do not use. */
fe4da5cc 302 AliFMD();
9f662337 303 /** Normal constructor
304 @param name Name of object.
305 @param title Title of object. */
1a1fdef7 306 AliFMD(const char *name, const char *title);
9f662337 307 /** Destructor */
4347b38f 308 virtual ~AliFMD();
9f662337 309 /** Wheter to make a detailed geometry
310 @param use If true, make detailed geometry */
54240c8d 311 void UseDetailed(Bool_t use=kTRUE) { fDetailed = use; }
4ac75127 312
9f662337 313 /** @{*/
314 /** @name GEometry ANd Tracking (GEANT :-) */
315 /** Define the geometry. This is done by asking the manager
316 AliFMDGeometry to construct the geometry. This in turn calls
317 AliFMDGeometryBuilder. */
4347b38f 318 virtual void CreateGeometry();
ee8a5fe6 319 /** Create entries for alignable volumes associating the symbolic volume
320 name with the corresponding volume path. Needs to be syncronized with
321 eventual changes in the geometry. */
322 virtual void AddAlignableVolumes() const;
9f662337 323 /** Create the tracking mediums used by the FMD. This associates
324 the tracking mediums defined with the FMD in the
325 TVirtualMCApplication (AliMC).
326
327 The defined mediums are
328 - @c FMD @c Si$ Silicon (active medium in sensors)
329 - @c FMD @c C$ Carbon fibre (support cone for FMD3 and vacuum pipe)
330 - @c FMD @c Al$ Aluminium (honeycomb support plates)
331 - @c FMD @c PCB$ Printed Circuit Board (FEE board with VA1_3)
332 - @c FMD @c Chip$ Electronics chips (currently not used)
333 - @c FMD @c Air$ Air (Air in the FMD)
334 - @c FMD @c Plastic$ Plastic (Support legs for the hybrid cards)
335 */
4347b38f 336 virtual void CreateMaterials();
40fa2e58 337 /**
338 * Declare tracking parameters for a medium
339 *
340 * Cut offs are in GeV.
341 * @param imed Medium identifier
342 * @param gamma Cut off for tracking photons
343 * @param electron Cut off for tracking electrons
344 * @param neutral_hadron Cut off for tracking neutral hadrons
345 * @param charged_hadron Cut off for tracking charged hadrons
346 * @param muon Cut off for tracking muons
347 * @param electron_bremstrahlung Cut off for tracking electron brehmstralung
348 * @param muon__bremstrahlung Cut off for tracking muon brehmstralung
349 * @param electron_delta Cut off for tracking delta electrons
350 * @param muon_delta Cut off for tracking delta muons
351 * @param muon_pair Cut off for muon->ee pair production
352 * @param annihilation Enable annihilation
353 * @param bremstrahlung Enable brehmstralung
354 * @param compton_scattering Enable Compton scattering
355 * @param decay Enable decays
356 * @param delta_ray Enable delta rays
357 * @param hadronic Enable hadronic interactions
358 * @param energy_loss Enable energy loss
359 * @param multiple_scattering Enable multiple scattering
360 * @param pair_production Enable pair production
361 * @param photon_production Enable cherenkov photon production
362 * @param rayleigh_scattering Enable rayleigh scattering
363 */
364 void SetTrackingParameters(Int_t imed,
365 Float_t gamma,
366 Float_t electron,
367 Float_t neutral_hadron,
368 Float_t charged_hadron,
369 Float_t muon,
370 Float_t electron_bremstrahlung,
371 Float_t muon__bremstrahlung,
372 Float_t electron_delta,
373 Float_t muon_delta,
374 Float_t muon_pair,
375 Int_t annihilation,
376 Int_t bremstrahlung,
377 Int_t compton_scattering,
378 Int_t decay,
379 Int_t delta_ray,
380 Int_t hadronic,
381 Int_t energy_loss,
382 Int_t multiple_scattering,
383 Int_t pair_production,
384 Int_t photon_production,
385 Int_t rayleigh_scattering);
9f662337 386 /** Initialize this detector */
fe4da5cc 387 virtual void Init();
9f662337 388 /** This member function is called when ever a track deposites
389 energy (or similar) in an FMD tracking medium. In this base
390 class this member function is pure abstract. In concrete
391 sub-classes, the member function may make hits or other
392 stuff. */
4347b38f 393 virtual void StepManager() = 0;
9f662337 394 /** Called at the end of each simulation event. If the debug level
395 is high enough a list of @e bad hits is printed. */
54240c8d 396 virtual void FinishEvent();
9f662337 397 /** @}*/
54240c8d 398
9f662337 399 /** @{*/
400 /** @name Graphics and event display */
9f662337 401 /** Draw a shaded view of the Forward multiplicity detector. This
402 isn't really useful anymore. */
7dd2cbe4 403 virtual void DrawDetector() {}
9f662337 404 /** @}*/
bf000c32 405
9f662337 406 /** @{ */
407 /** @name Hit and digit management */
408 /* Create Tree branches for the FMD.
409 @param opt One of
410 - @c H Make a branch of TClonesArray of AliFMDHit's
411 - @c D Make a branch of TClonesArray of AliFMDDigit's
412 - @c S Make a branch of TClonesArray of AliFMDSDigit's */
4347b38f 413 virtual void MakeBranch(Option_t *opt=" ");
9f662337 414 /** Set the TClonesArray to read hits into.
415 @param b The branch to containn the hits */
4347b38f 416 virtual void SetHitsAddressBranch(TBranch *b);
42f1b2f5 417 /** Set the TClonesArray to read sdigits into.
418 @param b The branch to containn the sdigits */
419 virtual void SetSDigitsAddressBranch(TBranch *b);
9f662337 420 /** Set branch address for the Hits, Digits, and SDigits Tree. */
4347b38f 421 virtual void SetTreeAddress();
9f662337 422 /** Get the array of summable digits
423 @return summable digits */
4347b38f 424 virtual TClonesArray* SDigits() { return fSDigits; }
9f662337 425 /** Reset the array of summable digits */
4347b38f 426 virtual void ResetSDigits();
9f662337 427 /** Add a hit to the hits tree
428 @param track Track #
f8616692 429 @param vol Volume parameters, interpreted as
9f662337 430 - ivol[0] [UShort_t ] Detector #
431 - ivol[1] [Char_t ] Ring ID
432 - ivol[2] [UShort_t ] Sector #
433 - ivol[3] [UShort_t ] Strip #
434 @param hits Hit information
435 - hits[0] [Float_t ] Track's X-coordinate at hit
436 - hits[1] [Float_t ] Track's Y-coordinate at hit
437 - hits[3] [Float_t ] Track's Z-coordinate at hit
438 - hits[4] [Float_t ] X-component of track's momentum
439 - hits[5] [Float_t ] Y-component of track's momentum
440 - hits[6] [Float_t ] Z-component of track's momentum
441 - hits[7] [Float_t ] Energy deposited by track
442 - hits[8] [Int_t ] Track's particle Id #
443 - hits[9] [Float_t ] Time when the track hit */
4347b38f 444 virtual void AddHit(Int_t track, Int_t *vol, Float_t *hits);
9f662337 445 /** Add a hit to the list
446 @param track Track #
447 @param detector Detector # (1, 2, or 3)
448 @param ring Ring ID ('I' or 'O')
449 @param sector Sector # (For inner/outer rings: 0-19/0-39)
450 @param strip Strip # (For inner/outer rings: 0-511/0-255)
451 @param x Track's X-coordinate at hit
452 @param y Track's Y-coordinate at hit
453 @param z Track's Z-coordinate at hit
454 @param px X-component of track's momentum
455 @param py Y-component of track's momentum
456 @param pz Z-component of track's momentum
457 @param edep Energy deposited by track
458 @param pdg Track's particle Id #
459 @param t Time when the track hit
f8616692 460 @param len Track length through the material.
461 @param stopped Whether track was stopped or disappeared */
54240c8d 462 virtual AliFMDHit* AddHitByFields(Int_t track,
69b696b9 463 UShort_t detector,
464 Char_t ring,
465 UShort_t sector,
466 UShort_t strip,
467 Float_t x=0,
468 Float_t y=0,
469 Float_t z=0,
470 Float_t px=0,
471 Float_t py=0,
472 Float_t pz=0,
473 Float_t edep=0,
474 Int_t pdg=0,
088f8e79 475 Float_t t=0,
476 Float_t len=0,
477 Bool_t stopped=kFALSE);
9f662337 478 /** Add a digit to the Digit tree
479 @param digits
480 - digits[0] [UShort_t] Detector #
481 - digits[1] [Char_t] Ring ID
482 - digits[2] [UShort_t] Sector #
483 - digits[3] [UShort_t] Strip #
484 - digits[4] [UShort_t] ADC Count
485 - digits[5] [Short_t] ADC Count, -1 if not used
486 - digits[6] [Short_t] ADC Count, -1 if not used
487 @param notused Not used */
69b696b9 488 virtual void AddDigit(Int_t *digits, Int_t* notused=0);
9f662337 489 /** add a real digit
490 @param detector Detector # (1, 2, or 3)
491 @param ring Ring ID ('I' or 'O')
492 @param sector Sector # (For inner/outer rings: 0-19/0-39)
493 @param strip Strip # (For inner/outer rings: 0-511/0-255)
494 @param count1 ADC count (a 10-bit word)
495 @param count2 ADC count (a 10-bit word), or -1 if not used
496 @param count3 ADC count (a 10-bit word), or -1 if not used */
faf80567 497 virtual void AddDigitByFields(UShort_t detector=0,
498 Char_t ring='\0',
499 UShort_t sector=0,
500 UShort_t strip=0,
501 UShort_t count1=0,
502 Short_t count2=-1,
503 Short_t count3=-1,
504 Short_t count4=-1,
4c59a89d 505 UShort_t nrefs=0,
506 Int_t* refs=0);
9f662337 507 /** Add a digit to the Digit tree
508 @param digits
509 - digits[0] [UShort_t] Detector #
510 - digits[1] [Char_t] Ring ID
511 - digits[2] [UShort_t] Sector #
512 - digits[3] [UShort_t] Strip #
83ad576a 513 - digits[4] [Float_t] Edep
514 - digits[5] [UShort_t] ADC Count
515 - digits[6] [Short_t] ADC Count, -1 if not used
516 - digits[7] [Short_t] ADC Count, -1 if not used
517 - digits[8] [Short_t] ADC Count, -1 if not used
518 - digits[9] [UShort_t] N total particles
519 - digits[10] [UShort_t] N total primary particles
520 */
4347b38f 521 virtual void AddSDigit(Int_t *digits);
9f662337 522 /** add a summable digit - as coming from data
523 @param detector Detector # (1, 2, or 3)
f8616692 524 @param ring Ring ID ('I' or 'O')
525 @param sector Sector # (For inner/outer rings: 0-19/0-39)
526 @param strip Strip # (For inner/outer rings: 0-511/0-255)
527 @param edep Energy deposited
9f662337 528 @param count1 ADC count (a 10-bit word)
f8616692 529 @param count2 ADC count (a 10-bit word), or -1 if not used
530 @param count3 ADC count (a 10-bit word), or -1 if not used */
b2e6f0b0 531 virtual void AddSDigitByFields(UShort_t detector=0,
532 Char_t ring='\0',
533 UShort_t sector=0,
534 UShort_t strip=0,
535 Float_t edep=0,
536 UShort_t count1=0,
537 Short_t count2=-1,
538 Short_t count3=-1,
539 Short_t count4=-1,
540 UShort_t ntot=0,
541 UShort_t nprim=0,
4c59a89d 542 Int_t* refs=0);
9f662337 543 /** @}*/
4347b38f 544
9f662337 545 /** @{ */
546 /** @name Digitisation */
547 /** Create a digitizer object
548 @param manager Digitization manager
549 @return a newly allocated AliFMDDigitizer */
c92eb8ad 550 virtual AliDigitizer* CreateDigitizer(AliRunDigitizer* manager) const;
9f662337 551 /** Create AliFMDDigit's from AliFMDHit's. This is done by creating
552 an AliFMDDigitizer object, and executing it. */
4347b38f 553 virtual void Hits2Digits();
9f662337 554 /** Create AliFMDSDigit's from AliFMDHit's. This is done by creating
555 an AliFMDSDigitizer object, and executing it. */
4347b38f 556 virtual void Hits2SDigits();
9f662337 557 /** @}*/
4347b38f 558
9f662337 559 /** @{ */
560 /** @name Raw data */
faf80567 561 /**
562 * Turn digits into raw data. This uses the class AliFMDRawWriter to
563 * do the job. Please refer to that class for more information.
564 */
565 virtual void Digits2Raw();
566 /**
567 * Convert raw data to sdigits
568 *
569 * @param reader Raw reader
570 *
571 * @return @c true on success
572 */
573 virtual Bool_t Raw2SDigits(AliRawReader* reader);
9f662337 574 /** @}*/
4347b38f 575
9f662337 576 /** @{ */
faf80567 577 /**
578 * @name Utility
579 */
580 /**
581 * Browse this object
582 *
583 * @param b Browser to show this object in
584 */
4347b38f 585 void Browse(TBrowser* b);
9f662337 586 /** @}*/
4347b38f 587protected:
9f662337 588 /** Initialize hit array if not already done, and return pointert.
589 @return Hit array */
56b1929b 590 TClonesArray* HitsArray();
9f662337 591 /** Initialize digit array if not already done, and return pointert.
592 @return Digit array */
56b1929b 593 TClonesArray* DigitsArray();
9f662337 594 /** Initialize summable digit array if not already done, and return
595 pointert.
596 @return Summable digit array */
56b1929b 597 TClonesArray* SDigitsArray();
598
56b1929b 599 TClonesArray* fSDigits; // Summable digits
600 Int_t fNsdigits; // Number of digits
1a1fdef7 601 Bool_t fDetailed; // Use detailed geometry
4ac75127 602 Bool_t fUseOld; // Use old approx geometry
4ac75127 603 Bool_t fUseAssembly; // Use divided volumes
1a1fdef7 604
54e415a8 605 enum {
606 kSiId, // ID index of Si medium
607 kAirId, // ID index of Air medium
608 kPlasticId, // ID index of Plastic medium
609 kPcbId, // ID index of PCB medium
610 kSiChipId, // ID index of Si Chip medium
611 kAlId, // ID index of Al medium
612 kCarbonId, // ID index of Carbon medium
613 kCopperId, // ID index of Copper Medium
d98fbfa5 614 kKaptonId, // ID index of Kapton Medium
615 kSteelId // ID index of Steel medium
54e415a8 616 };
617
54e415a8 618 TObjArray* fBad; //! debugging - bad hits
e939a978 619
620private:
621 /** Copy constructor
622 @param other Object to copy from */
623 AliFMD(const AliFMD& other);
624 /** Assignment operator
625 @param other Object to assign from
626 @return Reference to this object */
627 AliFMD& operator=(const AliFMD& other);
628
394d8216 629 ClassDef(AliFMD,11) // Base class FMD entry point
fe4da5cc 630};
dc8af42e 631
4347b38f 632#endif
633//____________________________________________________________________
634//
0d0e6995 635// Local Variables:
636// mode: C++
637// End:
638//
4347b38f 639// EOF
640//