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
|
/*
* Payload definition(s): Chamber Alignment (RPCObAlignment)
*
* $Date: 2009/11/16 12:53:47 $
* $Revision: 1.3 $
* \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
*/
#ifndef RPCObAlignment_h
#define RPCObAlignment_h
#include <vector>
class RPCObAlignment {
public:
struct Alignment_Item {
int dpid;
float alocalX;
float alocalPhi;
};
RPCObAlignment() {}
virtual ~RPCObAlignment() {}
std::vector<Alignment_Item> ObAlignment_rpc;
};
#endif
|