CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/CondFormats/RPCObjects/interface/RPCObAlignment.h

Go to the documentation of this file.
00001 /*
00002  * Payload definition(s): Chamber Alignment (RPCObAlignment)
00003  *
00004  *  $Date: 2009/11/16 12:55:34 $
00005  *  $Revision: 1.4 $
00006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
00007  */
00008 
00009 #ifndef RPCObAlignment_h
00010 #define RPCObAlignment_h
00011 #include <vector>
00012 
00013 class RPCObAlignment {
00014     public:
00015       struct Alignment_Item {
00016 
00017         int   dpid;
00018         float alocalX;
00019         float alocalPhi;
00020     };
00021     RPCObAlignment(){}
00022     virtual ~RPCObAlignment(){}
00023     std::vector<Alignment_Item> ObAlignment_rpc;
00024    };
00025 
00026 #endif
00027