CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/OnlineDB/EcalCondDB/interface/FEConfigWeightDat.h

Go to the documentation of this file.
00001 #ifndef FECONFWEIGHTDAT_H
00002 #define FECONFWEIGHTDAT_H
00003 
00004 #include <vector>
00005 #include <stdexcept>
00006 
00007 #include "OnlineDB/EcalCondDB/interface/IDataItem.h"
00008 #include "OnlineDB/EcalCondDB/interface/FEConfigWeightInfo.h"
00009 #include "OnlineDB/EcalCondDB/interface/EcalLogicID.h"
00010 
00011 class FEConfigWeightDat : public IDataItem {
00012  public:
00013   friend class EcalCondDBInterface; // XXX temp should not need
00014   FEConfigWeightDat();
00015   ~FEConfigWeightDat();
00016 
00017   // User data methods
00018   inline std::string getTable() { return "FE_CONFIG_WEIGHT_DAT"; }
00019 
00020   inline void setWeightGroupId(int x) { m_group_id = x; }
00021   inline int getWeightGroupId() const { return m_group_id; }
00022 
00023  private:
00024   void prepareWrite() 
00025     throw(std::runtime_error);
00026 
00027   void writeDB(const EcalLogicID* ecid, const FEConfigWeightDat* item, FEConfigWeightInfo* iconf)
00028     throw(std::runtime_error);
00029 
00030 
00031   void writeArrayDB(const std::map< EcalLogicID, FEConfigWeightDat>* data, FEConfigWeightInfo* iconf)
00032   throw(std::runtime_error);
00033 
00034 
00035   void fetchData(std::map< EcalLogicID, FEConfigWeightDat >* fillMap, FEConfigWeightInfo* iconf)
00036      throw(std::runtime_error);
00037 
00038   // User data
00039   int m_group_id;
00040 
00041 };
00042 
00043 #endif