** Warning **

Issuing rollback() due to DESTROY without explicit disconnect() of DBD::mysql::db handle dbname=lxr at /lxr/lib/LXR/Common.pm line 1113.

Last-Modified: Fri, 18 Sep 2025 22:20:37 GMT Content-Type: text/html; charset=utf-8 /CMSSW_16_0_X_2025-09-18-2300/CondFormats/Calibration/interface/strKeyMap.h
Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-09-12 09:49:14

0001 #ifndef CondFormats_strKeyMap_h
0002 #define CondFormats_strKeyMap_h
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004 
0005 #include <map>
0006 class Algob {
0007 public:
0008   Algob() {}
0009   int b;
0010 
0011   COND_SERIALIZABLE;
0012 };
0013 class strKeyMap {
0014 public:
0015   strKeyMap() {}
0016 
0017 private:
0018   std::map<std::string, Algob> m_content;
0019 
0020   COND_SERIALIZABLE;
0021 };
0022 #endif