1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef DTSequentialLayerNumber_H
#define DTSequentialLayerNumber_H
/** \class DTSequentialLayerNumber
*
* Description:
* Class to compute a sequential number for drift tube layers
*
* $Date: 2010/04/30 16:20:08 $
* $Revision: 1.1 $
* \author Paolo Ronchese INFN Padova
*
*/
//----------------------
// Base Class Headers --
//----------------------
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class DTSequentialLayerNumber {
public:
DTSequentialLayerNumber();
~DTSequentialLayerNumber();
static int id(int wheel, int station, int sector, int superlayer, int layer);
static int max();
};
#endif // DTSequentialLayerNumber_H
|