CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCDQM_Cache.h
Go to the documentation of this file.
1 /*
2  * =====================================================================================
3  *
4  * Filename: CSCDQM_Cache.h
5  *
6  * Description: Efficiently manages lists of MonitorObject's for internal
7  * MO cache.
8  *
9  * Version: 1.0
10  * Created: 11/27/2008 10:05:00 AM
11  * Revision: none
12  * Compiler: gcc
13  *
14  * Author: Valdas Rapsevicius (VR), valdas.rapsevicius@cern.ch
15  * Company: CERN, CH
16  *
17  * =====================================================================================
18  */
19 
20 #ifndef CSCDQM_Cache_H
21 #define CSCDQM_Cache_H
22 
23 #include <map>
24 #include <boost/multi_index_container.hpp>
25 #include <boost/multi_index/member.hpp>
26 #include <boost/multi_index/composite_key.hpp>
27 #include <boost/multi_index/ordered_index.hpp>
28 #include "boost/tuple/tuple.hpp"
29 
30 #include <boost/shared_ptr.hpp>
31 
36 
37 namespace cscdqm {
38 
40  struct CSCHistoKeyType {
43  const MonitorObject* mo;
44  CSCHistoKeyType(const HistoId& id_, const HwId& addId_, const MonitorObject* mo_) : id(id_), addId(addId_), mo(mo_) { }
45  };
46 
48  typedef boost::multi_index_container<
49  CSCHistoKeyType,
50  boost::multi_index::indexed_by<
51  boost::multi_index::ordered_unique<
52  boost::multi_index::composite_key<
53  CSCHistoKeyType,
54  boost::multi_index::member<CSCHistoKeyType, HistoId, &CSCHistoKeyType::id>,
55  boost::multi_index::member<CSCHistoKeyType, HwId, &CSCHistoKeyType::addId>
56  >
57  >
58  >
60 
62  struct CSCKeyType {
66  CSCKeyType(const HwId& crateId_, const HwId& dmbId_) : crateId(crateId_), dmbId(dmbId_) { }
67  };
68 
70  typedef boost::multi_index_container<
71  CSCKeyType,
72  boost::multi_index::indexed_by<
73  boost::multi_index::ordered_unique<
74  boost::multi_index::composite_key<
75  CSCKeyType,
76  boost::multi_index::member<CSCKeyType, HwId, &CSCKeyType::crateId>,
77  boost::multi_index::member<CSCKeyType, HwId, &CSCKeyType::dmbId>
78  >
79  >
80  >
82 
84  typedef std::map<HwId, MonitorObject**> DDUMapType;
85 
87  struct LookupKeyType {
89  std::string path;
91  LookupKeyType(const HistoDef& histo_, MonitorObject*& mo_) : histo(histo_), mo(mo_) {
92  path = histo.getPath();
93  }
94  };
95 
97  typedef boost::multi_index_container<
98  LookupKeyType,
99  boost::multi_index::indexed_by<
100  boost::multi_index::ordered_unique<boost::multi_index::member<LookupKeyType, HistoDef, &LookupKeyType::histo> >,
101  boost::multi_index::ordered_non_unique<boost::multi_index::member<LookupKeyType, std::string, &LookupKeyType::path> >
102  >
104 
109  class Cache {
110 
111  private:
112 
115 
119  DDUMapType::const_iterator dduPointer;
122 
126  CSCMapType::const_iterator cscPointer;
127 
130 
131  public:
132 
134  Cache() {
135 
137  for (unsigned int i = 0; i < h::namesSize; i++) data[i] = 0;
138 
140  dduPointer = dduData.end();
141  dduPointerValue = 0;
142  cscPointer = cscData.end();
143  }
144 
146  ~Cache() {
148  while (dduData.begin() != dduData.end()) {
149  if (dduData.begin()->second) {
150  delete [] dduData.begin()->second;
151  }
152  dduData.erase(dduData.begin());
153  }
154  }
155 
158  const bool get(const HistoDef& histo, MonitorObject*& mo);
159  const bool getEMU(const HistoId& id, MonitorObject*& mo);
160  const bool getDDU(const HistoId& id, const HwId& dduId, MonitorObject*& mo);
161  const bool getCSC(const HistoId& id, const HwId& crateId, const HwId& dmbId, const HwId& addId, MonitorObject*& mo);
162  const bool getPar(const HistoId& id, MonitorObject*& mo);
163  void put(const HistoDef& histo, MonitorObject* mo);
164 
167  const bool nextBookedDDU(unsigned int& n, unsigned int& dduId) const;
168  const bool nextBookedCSC(unsigned int& n, unsigned int& crateId, unsigned int& dmbId) const;
169  const bool isBookedCSC(const HwId& crateId, const HwId& dmbId) const;
170  const bool isBookedDDU(const HwId& dduId) const;
171 
172  };
173 
174 }
175 
176 #endif
int i
Definition: DBlmapReader.cc:9
unsigned int HwId
const bool isBookedDDU(const HwId &dduId) const
Check if DDU was booked on given identifier.
DDUMapType dduData
Definition: CSCDQM_Cache.h:117
const bool getEMU(const HistoId &id, MonitorObject *&mo)
Get EMU MO on Histogram Id.
Definition: CSCDQM_Cache.cc:53
LookupKeyType(const HistoDef &histo_, MonitorObject *&mo_)
Definition: CSCDQM_Cache.h:91
CSCHistoKeyType(const HistoId &id_, const HwId &addId_, const MonitorObject *mo_)
Definition: CSCDQM_Cache.h:44
const bool nextBookedCSC(unsigned int &n, unsigned int &crateId, unsigned int &dmbId) const
Iterator to get booked CSC identifiers on enumerator.
Monitoring Object interface used to cover Root object and provide common interface to EventProcessor ...
Abstract Base Histogram Definition.
CSCKeyType(const HwId &crateId_, const HwId &dmbId_)
Definition: CSCDQM_Cache.h:66
MonitorObject * data[h::namesSize]
Definition: CSCDQM_Cache.h:114
const bool nextBookedDDU(unsigned int &n, unsigned int &dduId) const
Iterator to get booked DDU identifier on enumerator.
tuple histo
Definition: trackerHits.py:12
std::map< HwId, MonitorObject ** > DDUMapType
Definition: CSCDQM_Cache.h:84
unsigned int HistoId
const bool getPar(const HistoId &id, MonitorObject *&mo)
Get Parameter MO on Histogram Id.
HwId dduPointerValue
Definition: CSCDQM_Cache.h:121
MonitorObject * mo
Definition: CSCDQM_Cache.h:90
MonitorObject cache - list objects and routines to manage cache.
Definition: CSCDQM_Cache.h:109
DDUMapType::const_iterator dduPointer
Definition: CSCDQM_Cache.h:119
CSCMapType::const_iterator cscPointer
Definition: CSCDQM_Cache.h:126
MO Lookup List object definition.
Definition: CSCDQM_Cache.h:87
Chamber List object definition.
Definition: CSCDQM_Cache.h:62
virtual const std::string getPath() const
Get path part of the histogram (used only for DDUs and CSCs)
boost::multi_index_container< CSCHistoKeyType, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::composite_key< CSCHistoKeyType, boost::multi_index::member< CSCHistoKeyType, HistoId,&CSCHistoKeyType::id >, boost::multi_index::member< CSCHistoKeyType, HwId,&CSCHistoKeyType::addId > > > > > CSCHistoMapType
Definition: CSCDQM_Cache.h:59
const bool getDDU(const HistoId &id, const HwId &dduId, MonitorObject *&mo)
Get DDU MO on Histogram Id and DDU Id.
Definition: CSCDQM_Cache.cc:68
void put(const HistoDef &histo, MonitorObject *mo)
Put Monitoring Object into cache.
Chamber MO List object definition.
Definition: CSCDQM_Cache.h:40
const bool isBookedCSC(const HwId &crateId, const HwId &dmbId) const
Check if CSC was booked on given identifiers.
CSCMapType cscData
Definition: CSCDQM_Cache.h:124
static const unsigned int namesSize
boost::multi_index_container< LookupKeyType, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::member< LookupKeyType, HistoDef,&LookupKeyType::histo > >, boost::multi_index::ordered_non_unique< boost::multi_index::member< LookupKeyType, std::string,&LookupKeyType::path > > > > LookupMapType
Definition: CSCDQM_Cache.h:103
const bool getCSC(const HistoId &id, const HwId &crateId, const HwId &dmbId, const HwId &addId, MonitorObject *&mo)
Get CSC MO on Histogram Id and CSC Crate and DMB Ids.
Definition: CSCDQM_Cache.cc:97
const MonitorObject * mo
Definition: CSCDQM_Cache.h:43
boost::multi_index_container< CSCKeyType, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::composite_key< CSCKeyType, boost::multi_index::member< CSCKeyType, HwId,&CSCKeyType::crateId >, boost::multi_index::member< CSCKeyType, HwId,&CSCKeyType::dmbId > > > > > CSCMapType
Definition: CSCDQM_Cache.h:81
CSCHistoMapType mos
Definition: CSCDQM_Cache.h:65
LookupMapType lookupData
Definition: CSCDQM_Cache.h:129