]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDBoolMap.cxx
3e72594db2ec43ae876cf176638650b9c576a2bd
[u/mrichter/AliRoot.git] / FMD / AliFMDBoolMap.cxx
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 // 
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
24 // Created Mon Nov  8 12:51:51 2004 by Christian Holm Christensen
25 // 
26 #include "AliFMDBoolMap.h"      //ALIFMDBOOLMAP_H
27 //__________________________________________________________
28 ClassImp(AliFMDBoolMap)
29 #if 0
30   ; // This is here to keep Emacs for indenting the next line
31 #endif
32 //__________________________________________________________
33 AliFMDBoolMap::AliFMDBoolMap(const AliFMDBoolMap& other)
34   : AliFMDMap(other.fMaxDetectors,
35               other.fMaxRings,
36               other.fMaxSectors,
37               other.fMaxStrips),
38     fData(0)
39 {
40   // Copy constructor
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];
44 }
45
46 //__________________________________________________________
47 AliFMDBoolMap::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
60   fTotal = fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
61   fData  = new Bool_t[fTotal];
62   Reset();
63 }
64
65 //__________________________________________________________
66 AliFMDBoolMap&
67 AliFMDBoolMap::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;
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];
78   return *this;
79 }
80
81 //__________________________________________________________
82 void
83 AliFMDBoolMap::Reset(const Bool_t& val)
84 {
85   // Reset map to val
86   for (size_t i = 0; i < fTotal; i++) fData[i] = val;
87 }
88
89 //__________________________________________________________
90 Bool_t&
91 AliFMDBoolMap::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 //__________________________________________________________
107 const Bool_t&
108 AliFMDBoolMap::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