]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDBoolMap.cxx
Made copy constructor and assignment operator protected.
[u/mrichter/AliRoot.git] / FMD / AliFMDBoolMap.cxx
CommitLineData
56b1929b 1/**************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN. *
3 * All rights reserved. *
4 * *
5 * Author: The ALICE Off-line Project. *
6 * Contributors are mentioned in the code where appropriate. *
7 * *
8 * Permission to use, copy, modify and distribute this *
9 * software and its documentation strictly for non-commercial *
10 * purposes is hereby granted without fee, provided that the *
11 * above copyright notice appears in all copies and that both *
12 * the copyright notice and this permission notice appear in *
13 * the supporting documentation. The authors make no claims *
14 * about the suitability of this software for any purpose. It *
15 * is provided "as is" without express or implied warranty. *
16 **************************************************************/
17/* $Id$ */
18//__________________________________________________________
19//
088f8e79 20// Map of Bool_t for each FMD strip
21// Used in calibration and the like classes.
22// Used amoung other things for dead-channel map
23// Can also be used for other stuff too
56b1929b 24// Created Mon Nov 8 12:51:51 2004 by Christian Holm Christensen
25//
26#include "AliFMDBoolMap.h" //ALIFMDBOOLMAP_H
27//__________________________________________________________
925e6570 28ClassImp(AliFMDBoolMap)
1a1fdef7 29#if 0
30 ; // This is here to keep Emacs for indenting the next line
31#endif
56b1929b 32//__________________________________________________________
33AliFMDBoolMap::AliFMDBoolMap(const AliFMDBoolMap& other)
34 : AliFMDMap(other.fMaxDetectors,
35 other.fMaxRings,
36 other.fMaxSectors,
37 other.fMaxStrips),
38 fData(0)
39{
40 // Copy constructor
bfdc7f5d 41 fTotal = fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
42 fData = new Bool_t[fTotal];
43 for (size_t i = 0; i < fTotal; i++) fData[i] = other.fData[i];
56b1929b 44}
45
46//__________________________________________________________
47AliFMDBoolMap::AliFMDBoolMap(size_t maxDet,
48 size_t maxRing,
49 size_t maxSec,
50 size_t maxStr)
51 : AliFMDMap(maxDet, maxRing, maxSec, maxStr),
52 fData(0)
53{
54 // Constructor.
55 // Parameters:
56 // maxDet Maximum number of detectors
57 // maxRing Maximum number of rings per detector
58 // maxSec Maximum number of sectors per ring
59 // maxStr Maximum number of strips per sector
bfdc7f5d 60 fTotal = fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
61 fData = new Bool_t[fTotal];
69b696b9 62 Reset();
56b1929b 63}
64
65//__________________________________________________________
66AliFMDBoolMap&
67AliFMDBoolMap::operator=(const AliFMDBoolMap& other)
68{
69 // Assignment operator
70 fMaxDetectors = other.fMaxDetectors;
71 fMaxRings = other.fMaxRings;
72 fMaxSectors = other.fMaxSectors;
73 fMaxStrips = other.fMaxStrips;
74 if (fData) delete [] fData;
bfdc7f5d 75 fTotal = fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
76 fData = new Bool_t[fTotal];
77 for (size_t i = 0; i < fTotal; i++) fData[i] = other.fData[i];
56b1929b 78 return *this;
79}
80
81//__________________________________________________________
82void
69b696b9 83AliFMDBoolMap::Reset(const Bool_t& val)
56b1929b 84{
85 // Reset map to val
bfdc7f5d 86 for (size_t i = 0; i < fTotal; i++) fData[i] = val;
56b1929b 87}
88
89//__________________________________________________________
90Bool_t&
91AliFMDBoolMap::operator()(UShort_t det,
92 Char_t ring,
93 UShort_t sec,
94 UShort_t str)
95{
96 // Get data
97 // Parameters:
98 // det Detector #
99 // ring Ring ID
100 // sec Sector #
101 // str Strip #
102 // Returns appropriate data
103 return fData[CalcIndex(det, ring, sec, str)];
104}
105
106//__________________________________________________________
107const Bool_t&
108AliFMDBoolMap::operator()(UShort_t det,
109 Char_t ring,
110 UShort_t sec,
111 UShort_t str) const
112{
113 // Get data
114 // Parameters:
115 // det Detector #
116 // ring Ring ID
117 // sec Sector #
118 // str Strip #
119 // Returns appropriate data
120 return fData[CalcIndex(det, ring, sec, str)];
121}
122
123//__________________________________________________________
124//
125// EOF
126//
127