]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDBoolMap.h
Added script for runnings Yves QA stuff
[u/mrichter/AliRoot.git] / FMD / AliFMDBoolMap.h
1 #ifndef ALIFMDBOOLMAP_H
2 #define ALIFMDBOOLMAP_H
3 /* Copyright (c) 2004, ALICE Experiment @ CERN.
4  * All rights reserved
5  * See AliFMDBoolMap.cxx for full copyright notice
6  * 
7  * Created Mon Nov  8 12:51:51 2004 by Christian Holm Christensen
8  */
9 /* $Id$ */
10 /** @file    AliFMDBoolMap.h
11     @author  Christian Holm Christensen <cholm@nbi.dk>
12     @date    Sun Mar 26 18:28:59 2006
13     @brief   Per strip boolean map
14 */
15 //__________________________________________________________
16 // 
17 // Map of Bool_t for each FMD strip
18 // Used in calibration and the like classes.
19 // Used amoung other things for dead-channel map
20 // 
21 #ifndef ALIFMDMAP_H
22 # include <AliFMDMap.h>
23 #endif
24
25 /** @class AliFMDBoolMap 
26     @brief MAp of per strip boolean values. 
27     @ingroup FMD_base
28  */
29 class AliFMDBoolMap : public AliFMDMap
30 {
31 public:
32   /** Copy constructor 
33       @param other Object to copy from. */
34   AliFMDBoolMap(const AliFMDBoolMap& other);
35   /** Constructor 
36       @param maxDet  Number of detectors (3)
37       @param maxRing Number of rings (2)
38       @param maxSec  Number of sectors (40)
39       @param maxStr  Number of strips (20) */
40   AliFMDBoolMap(UShort_t maxDet  = kMaxDetectors,
41                 UShort_t maxRing = kMaxRings,
42                 UShort_t maxSec  = kMaxSectors,
43                 UShort_t maxStr  = kMaxStrips);
44   /** Destructor */
45   virtual ~AliFMDBoolMap() { delete [] fData; }
46   /** Assignment operator 
47       @param other Object to assign from 
48       @return reference to this object.  */
49   AliFMDBoolMap& operator=(const AliFMDBoolMap& other);
50   /** Reset to value 
51       @param v Value to reset from */
52   virtual void Reset(const Bool_t& v=Bool_t());
53   /** Access operator 
54       @param det   Detector 
55       @param ring  Ring 
56       @param sec   Sector  
57       @param str   Strip
58       @return  reference value stored for the strip */
59   virtual Bool_t& operator()(UShort_t det,
60                              Char_t   ring,
61                              UShort_t sec,
62                              UShort_t str);
63   /** Access operator 
64       @param det   Detector 
65       @param ring  Ring 
66       @param sec   Sector  
67       @param str   Strip
68       @return  value stored for the strip */
69   virtual const Bool_t& operator()(UShort_t det,
70                                    Char_t   ring,
71                                    UShort_t sec,
72                                    UShort_t str) const;
73 protected:
74   Int_t  fTotal; // Total number of entries 
75   Bool_t* fData;  // [fTotal] The Data
76   ClassDef(AliFMDBoolMap,3) // Map of Bool_t data per strip
77 };
78
79 #endif
80 //__________________________________________________________
81 // 
82 // Local Variables:
83 //   mode: C++
84 // End:
85 //