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
|
#ifndef DTExpandMap_H
#define DTExpandMap_H
/** \class DTExpandMap
*
* Description:
* Class to build full readout map from compact map
*
* $Date: 2009/03/19 12:00:00 $
* $Revision: 1.1 $
* \author Paolo Ronchese INFN Padova
*
*/
//----------------------
// Base Class Headers --
//----------------------
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
//---------------
// C++ Headers --
//---------------
#include <iostream>
class DTExpandMap {
public:
static void expandSteering(std::ifstream& file);
};
#endif
|