]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDStripIndex.h
Remove some unused code
[u/mrichter/AliRoot.git] / FMD / AliFMDStripIndex.h
1 #ifndef ALIFMDSTRIPINDEX_H
2 #define ALIFMDSTRIPINDEX_H
3 /**************************************************************************
4  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  *                                                                        *
6  * Author: The ALICE Off-line Project.                                    *
7  * Contributors are mentioned in the code where appropriate.              *
8  *                                                                        *
9  * Permission to use, copy, modify and distribute this software and its   *
10  * documentation strictly for non-commercial purposes is hereby granted   *
11  * without fee, provided that the above copyright notice appears in all   *
12  * copies and that both the copyright notice and this permission notice   *
13  * appear in the supporting documentation. The authors make no claims     *
14  * about the suitability of this software for any purpose. It is          *
15  * provided "as is" without express or implied warranty.                  *
16  **************************************************************************/
17
18 // Struct to encode a strip address into one integer
19 // developed by Christian Holm Christensen (cholm@nbi.dk).
20 // 
21 // The functions are static to ensure applicability from
22 // anywhere. This is needed to smoothly store strip addresses in track
23 // references. 
24 //
25 // Added by Hans H. Dalsgaard (hans.dalsgaard@cern.ch) 
26
27
28 class AliFMDStripIndex
29 {
30 public:
31   /** 
32    * Constructor
33    * 
34    */  
35   AliFMDStripIndex() {}
36   /** 
37    * Destructor 
38    * 
39    */
40   virtual ~AliFMDStripIndex() {}
41   /** 
42    * Pack an identifier from detector coordinates
43    * 
44    * @param det  Detector
45    * @param rng  Ring
46    * @param sec  Sector
47    * @param str  Strip
48    * 
49    * @return Packed identifier 
50    */
51   static UInt_t Pack(UShort_t det, Char_t rng, UShort_t sec, UShort_t str) 
52   {
53     UInt_t irg  = (rng == 'I' || rng == 'i' ? 0 : 1);
54     UInt_t id   = (((str & 0x1FF) <<  0) | 
55                    ((sec & 0x03F) <<  9) | 
56                    ((irg & 0x001) << 16) | 
57                    ((det & 0x003) << 17));
58     return id;
59   }
60   /** 
61    * Unpack an identifier to detector coordinates
62    * 
63    * @param id   Identifier to unpack
64    * @param det  On return, the detector
65    * @param rng  On return, the ring
66    * @param sec  On return, the sector
67    * @param str  On return, the strip
68    */  
69   static void Unpack(UInt_t id, 
70                      UShort_t& det, Char_t& rng, UShort_t& sec, UShort_t& str)
71   {
72     str = ((id >>  0) & 0x1FF);
73     sec = ((id >>  9) & 0x03F);
74     rng = ((id >> 16) & 0x001) ? 'O' : 'I';
75     det = ((id >> 17) & 0x003);
76   }
77
78   ClassDef(AliFMDStripIndex,1)
79 };
80 #endif
81 //
82 // Local Variables:
83 //   mode: C++
84 // End:
85 //