]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - FMD/AliFMDUShortMap.cxx
Added AliMpStringObjMap, AliMpDEIterator, AliMpDEManager, AliMpSegFactory
[u/mrichter/AliRoot.git] / FMD / AliFMDUShortMap.cxx
... / ...
CommitLineData
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 **************************************************************************/
15
16/* $Id$ */
17
18//____________________________________________________________________
19//
20// A map of per strip UShort_t information (for example ADC values,
21// number of hits and so on).
22// Used for various calib information, and the like,
23// as well as in reconstruction.
24// Can be used elsewhere too.
25//
26#include "AliFMDUShortMap.h" // ALIFMDUSHORTMAP_H
27
28//____________________________________________________________________
29ClassImp(AliFMDUShortMap)
30#if 0
31 ; // This is here to keep Emacs for indenting the next line
32#endif
33
34//____________________________________________________________________
35AliFMDUShortMap::AliFMDUShortMap(const AliFMDUShortMap& other)
36 : AliFMDMap(other.fMaxDetectors, other.fMaxRings, other.fMaxSectors,
37 other.fMaxStrips),
38 fData(0)
39{
40 // CTOR
41 fData = new UShort_t[fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips];
42 for (size_t i = 0; i < fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
43 i++) fData[i] = other.fData[i];
44}
45
46
47
48//____________________________________________________________________
49AliFMDUShortMap::AliFMDUShortMap(size_t maxDet,
50 size_t maxRing,
51 size_t maxSec,
52 size_t maxStr)
53 : AliFMDMap(maxDet, maxRing, maxSec, maxStr),
54 fData(0)
55{
56 // Construct a map
57 //
58 // Parameters:
59 // maxDet Maximum # of detectors
60 // maxRinf Maximum # of rings
61 // maxSec Maximum # of sectors
62 // maxStr Maximum # of strips
63 fData = new UShort_t[fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips];
64}
65
66//____________________________________________________________________
67AliFMDUShortMap&
68AliFMDUShortMap::operator=(const AliFMDUShortMap& other)
69{
70 // Assignment operator
71 fMaxDetectors = other.fMaxDetectors;
72 fMaxRings = other.fMaxRings;
73 fMaxSectors = other.fMaxSectors;
74 fMaxStrips = other.fMaxStrips;
75 if (fData) delete [] fData;
76 fData = new UShort_t[fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips];
77 for (size_t i = 0; i < fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
78 i++) fData[i] = other.fData[i];
79 return *this;
80}
81
82//____________________________________________________________________
83void
84AliFMDUShortMap::Reset(const UShort_t& val)
85{
86 // Reset to val
87 for (size_t i = 0; i < fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
88 i++) fData[i] = val;
89}
90
91//____________________________________________________________________
92UShort_t&
93AliFMDUShortMap::operator()(UShort_t det, Char_t ring, UShort_t sec, UShort_t str)
94{
95 // Get data
96 //
97 // Parameters:
98 // det Detector #
99 // ring Ring ID
100 // sec Sector #
101 // str Strip #
102 //
103 // Returns appropriate data
104 //
105 return fData[CalcIndex(det, ring, sec, str)];
106}
107
108//____________________________________________________________________
109const UShort_t&
110AliFMDUShortMap::operator()(UShort_t det, Char_t ring, UShort_t sec, UShort_t str) const
111{
112 // Get data
113 //
114 // Parameters:
115 // det Detector #
116 // ring Ring ID
117 // sec Sector #
118 // str Strip #
119 //
120 // Returns appropriate data
121 //
122 return fData[CalcIndex(det, ring, sec, str)];
123}
124
125
126//___________________________________________________________________
127//
128// EOF
129//