Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:57

0001 #ifndef CondFormats_fakeMenu_h
0002 #define CondFormats_fakeMenu_h
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004 
0005 #include <map>
0006 class Algo {
0007 public:
0008   Algo() {}
0009   int a;
0010 
0011   COND_SERIALIZABLE;
0012 };
0013 class AlgoMap : public std::map<std::string, Algo> {
0014 public:
0015   AlgoMap() {}
0016 
0017   COND_SERIALIZABLE;
0018 };
0019 class fakeMenu {
0020 public:
0021   // constructor
0022   fakeMenu() {}
0023   virtual ~fakeMenu() {}
0024 
0025 private:
0026   AlgoMap m_algorithmMap;
0027 
0028   COND_SERIALIZABLE;
0029 };
0030 #endif