CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/CondFormats/HIObjects/interface/RPFlatParams.h

Go to the documentation of this file.
00001 #ifndef __RPFlatParams_h__
00002 #define __RPFlatParams_h__
00003 
00004 #include <vector>
00005 class RPFlatParams{
00006  public:
00007   struct EP {
00008     float x[50];
00009     float y[50];
00010     float xSub1[50];
00011     float ySub1[50];
00012     float xSub2[50];
00013     float ySub2[50];
00014     int RPNameIndx[50];
00015   };
00016   RPFlatParams(){}
00017   virtual ~RPFlatParams(){}
00018   std::vector<EP> m_table;
00019 };
00020 
00021 #endif
00022