Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:47:25

0001 /*
0002  * Payload definition(s): Chamber Alignment (RPCObAlignment)
0003  *
0004  *  $Date: 2009/11/16 12:53:47 $
0005  *  $Revision: 1.3 $
0006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
0007  */
0008 
0009 #ifndef RPCObAlignment_h
0010 #define RPCObAlignment_h
0011 #include <vector>
0012 
0013 class RPCObAlignment {
0014 public:
0015   struct Alignment_Item {
0016     int dpid;
0017     float alocalX;
0018     float alocalPhi;
0019   };
0020   RPCObAlignment() {}
0021   virtual ~RPCObAlignment() {}
0022   std::vector<Alignment_Item> ObAlignment_rpc;
0023 };
0024 
0025 #endif