CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/CondFormats/CSCObjects/interface/CSCDDUMap.h

Go to the documentation of this file.
00001 #ifndef CSCDDUMap_h
00002 #define CSCDDUMap_h
00003 
00004 #include "CondFormats/CSCObjects/interface/CSCMapItem.h"
00005 #include <map>
00006 
00007 class CSCDDUMap{
00008  public:
00009   CSCDDUMap();
00010   ~CSCDDUMap();
00011 
00012   const CSCMapItem::MapItem& item( int key )const;
00013 
00014   typedef std::map< int,CSCMapItem::MapItem > CSCMap;
00015   CSCMap ddu_map;
00016 };
00017 
00018 #endif