CMS 3D CMS Logo

L1MuBMSecProcMap.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
12 //
13 //--------------------------------------------------
14 #ifndef L1MUBM_SEC_PROC_MAP_H
15 #define L1MUBM_SEC_PROC_MAP_H
16 
17 //---------------
18 // C++ Headers --
19 //---------------
20 
21 #include <map>
22 
23 //----------------------
24 // Base Class Headers --
25 //----------------------
26 
27 //------------------------------------
28 // Collaborating Class Declarations --
29 //------------------------------------
30 
32 
34 
35 // ---------------------
36 // -- Class Interface --
37 // ---------------------
38 
40 public:
41  typedef std::map<L1MuBMSecProcId, L1MuBMSectorProcessor*, std::less<L1MuBMSecProcId> > SPmap;
42  typedef SPmap::iterator SPmap_iter;
43 
46 
48  virtual ~L1MuBMSecProcMap();
49 
52 
55 
57  inline int size() const { return m_map.size(); }
58 
60  inline SPmap_iter begin() { return m_map.begin(); }
61 
63  inline SPmap_iter end() { return m_map.end(); }
64 
65 private:
67 };
68 
69 #endif
L1MuBMSecProcMap()
constructor
int size() const
return number of entries present in the container
L1MuBMSectorProcessor * sp(const L1MuBMSecProcId &) const
return pointer to Sector Processor
SPmap::iterator SPmap_iter
SPmap_iter begin()
return iterator which points to the first entry of the container
void insert(const L1MuBMSecProcId &, L1MuBMSectorProcessor *sp)
insert a Sector Processor into the container
std::map< L1MuBMSecProcId, L1MuBMSectorProcessor *, std::less< L1MuBMSecProcId > > SPmap
virtual ~L1MuBMSecProcMap()
destructor
SPmap_iter end()
return iterator which points to the one-past-last entry of the container