1 /**************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN. *
3 * All rights reserved. *
5 * Author: The ALICE Off-line Project. *
6 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************/
18 //__________________________________________________________
20 // Map of per strip Float_t information
21 // the floats are indexed by the coordinates
23 // RING ID ('I' or 'O', any case)
28 // Created Mon Nov 8 12:51:51 2004 by Christian Holm Christensen
30 #include "AliFMDFloatMap.h" //ALIFMDFLOATMAP_H
31 //__________________________________________________________
32 ClassImp(AliFMDFloatMap)
34 ; // This is here to keep Emacs for indenting the next line
36 //__________________________________________________________
37 AliFMDFloatMap::AliFMDFloatMap(const AliFMDFloatMap& other)
38 : AliFMDMap(other.fMaxDetectors,
42 fTotal(fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips),
43 fData(new Float_t[fTotal])
46 for (Int_t i = 0; i < fTotal; i++)
47 fData[i] = other.fData[i];
50 //__________________________________________________________
51 AliFMDFloatMap::AliFMDFloatMap(Int_t maxDet,
55 : AliFMDMap(maxDet, maxRing, maxSec, maxStr),
56 fTotal(fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips),
57 fData(new Float_t[fTotal])
61 // maxDet Maximum number of detectors
62 // maxRing Maximum number of rings per detector
63 // maxSec Maximum number of sectors per ring
64 // maxStr Maximum number of strips per sector
68 //__________________________________________________________
70 AliFMDFloatMap::operator=(const AliFMDFloatMap& other)
72 // Assignment operator
74 if(fMaxDetectors!= other.fMaxDetectors||
75 fMaxRings != other.fMaxRings||
76 fMaxSectors != other.fMaxSectors||
77 fMaxStrips != other.fMaxStrips){
78 // allocate new memory only if the array size is different....
79 fMaxDetectors = other.fMaxDetectors;
80 fMaxRings = other.fMaxRings;
81 fMaxSectors = other.fMaxSectors;
82 fMaxStrips = other.fMaxStrips;
83 fTotal = fMaxDetectors * fMaxRings * fMaxSectors * fMaxStrips;
84 if (fData) delete [] fData;
85 fData = new Float_t[fTotal];
87 for (Int_t i = 0; i < fTotal; i++) fData[i] = other.fData[i];
92 //__________________________________________________________
94 AliFMDFloatMap::Reset(const Float_t& val)
97 for (Int_t i = 0; i < fTotal; i++) fData[i] = val;
100 //__________________________________________________________
102 AliFMDFloatMap::operator()(UShort_t det,
113 // Returns appropriate data
114 return fData[CalcIndex(det, ring, sec, str)];
117 //__________________________________________________________
119 AliFMDFloatMap::operator()(UShort_t det,
130 // Returns appropriate data
131 return fData[CalcIndex(det, ring, sec, str)];
134 //__________________________________________________________