CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
cscdqm::Cache Class Reference

MonitorObject cache - list objects and routines to manage cache. More...

#include <CSCDQM_Cache.h>

Public Member Functions

 Cache ()
 
const bool get (const HistoDef &histo, MonitorObject *&mo)
 Get Monitoring Object on Histogram Definition. More...
 
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. More...
 
const bool getDDU (const HistoId &id, const HwId &dduId, MonitorObject *&mo)
 Get DDU MO on Histogram Id and DDU Id. More...
 
const bool getEMU (const HistoId &id, MonitorObject *&mo)
 Get EMU MO on Histogram Id. More...
 
const bool getFED (const HistoId &id, const HwId &fedId, MonitorObject *&mo)
 Get FED MO on Histogram Id and FED Id. More...
 
const bool getPar (const HistoId &id, MonitorObject *&mo)
 Get Parameter MO on Histogram Id. More...
 
const bool isBookedCSC (const HwId &crateId, const HwId &dmbId) const
 Check if CSC was booked on given identifiers. More...
 
const bool isBookedDDU (const HwId &dduId) const
 Check if DDU was booked on given identifier. More...
 
const bool isBookedFED (const HwId &fedId) const
 Check if FED was booked on given identifier. More...
 
const bool nextBookedCSC (unsigned int &n, unsigned int &crateId, unsigned int &dmbId) const
 Iterator to get booked CSC identifiers on enumerator. More...
 
const bool nextBookedDDU (unsigned int &n, unsigned int &dduId) const
 Iterator to get booked DDU identifier on enumerator. More...
 
const bool nextBookedFED (unsigned int &n, unsigned int &fedId) const
 Iterator to get booked FED identifier on enumerator. More...
 
void put (const HistoDef &histo, MonitorObject *mo)
 Put Monitoring Object into cache. More...
 
 ~Cache ()
 

Private Attributes

CSCMapType cscData
 
CSCMapType::const_iterator cscPointer
 
MonitorObjectdata [h::namesSize]
 
DDUMapType dduData
 
DDUMapType::const_iterator dduPointer
 
HwId dduPointerValue
 
FEDMapType fedData
 
FEDMapType::const_iterator fedPointer
 
HwId fedPointerValue
 
LookupMapType lookupData
 

Detailed Description

MonitorObject cache - list objects and routines to manage cache.

Definition at line 99 of file CSCDQM_Cache.h.

Constructor & Destructor Documentation

cscdqm::Cache::Cache ( )
inline

Cache Constructor

Initialize EMU and PAR static array with zero's

Initialize FED cached pointers

Initialize DDU and CSC cached pointers

Definition at line 128 of file CSCDQM_Cache.h.

References cscData, cscPointer, data, dduData, dduPointer, dduPointerValue, fedData, fedPointer, fedPointerValue, mps_fire::i, and cscdqm::h::namesSize.

128  {
130  for (unsigned int i = 0; i < h::namesSize; i++)
131  data[i] = nullptr;
132 
134  fedPointer = fedData.end();
135  fedPointerValue = 0;
136 
138  dduPointer = dduData.end();
139  dduPointerValue = 0;
140  cscPointer = cscData.end();
141  }
DDUMapType dduData
Definition: CSCDQM_Cache.h:112
MonitorObject * data[h::namesSize]
Definition: CSCDQM_Cache.h:102
static const unsigned int namesSize
HwId dduPointerValue
Definition: CSCDQM_Cache.h:116
DDUMapType::const_iterator dduPointer
Definition: CSCDQM_Cache.h:114
CSCMapType::const_iterator cscPointer
Definition: CSCDQM_Cache.h:121
FEDMapType::const_iterator fedPointer
Definition: CSCDQM_Cache.h:107
FEDMapType fedData
Definition: CSCDQM_Cache.h:105
CSCMapType cscData
Definition: CSCDQM_Cache.h:119
HwId fedPointerValue
Definition: CSCDQM_Cache.h:109
cscdqm::Cache::~Cache ( )
inline

Destructor

Clear FED MO static arrays

Clear DDU MO static arrays

Definition at line 144 of file CSCDQM_Cache.h.

References dduData, and fedData.

144  {
146  while (fedData.begin() != fedData.end()) {
147  if (fedData.begin()->second) {
148  delete[] fedData.begin()->second;
149  }
150  fedData.erase(fedData.begin());
151  }
152 
154  while (dduData.begin() != dduData.end()) {
155  if (dduData.begin()->second) {
156  delete[] dduData.begin()->second;
157  }
158  dduData.erase(dduData.begin());
159  }
160  }
DDUMapType dduData
Definition: CSCDQM_Cache.h:112
FEDMapType fedData
Definition: CSCDQM_Cache.h:105

Member Function Documentation

const bool cscdqm::Cache::get ( const HistoDef histo,
MonitorObject *&  mo 
)

Get Monitoring Object on Histogram Definition.

Native Cache methods

Parameters
histoHistogram definition
moMonitoring Object to return
Returns
true if MO was found in cache and false otherwise

Definition at line 29 of file CSCDQM_Cache.cc.

References cscdqm::CSCHistoDefT, cscdqm::DDUHistoDefT, cscdqm::EMUHistoDefT, cscdqm::FEDHistoDefT, cscdqm::HistoDef::getAddId(), cscdqm::HistoDef::getCrateId(), getCSC(), getDDU(), cscdqm::HistoDef::getDDUId(), cscdqm::HistoDef::getDMBId(), getEMU(), getFED(), cscdqm::HistoDef::getFEDId(), cscdqm::HistoDef::getId(), getPar(), and cscdqm::ParHistoDefT.

Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), submitPVValidationJobs.BetterConfigParser::__updateDict(), rrapi.RRApi::columns(), util.rrapi.RRApi::columns(), rrapi.RRApi::count(), util.rrapi.RRApi::count(), rrapi.RRApi::data(), util.rrapi.RRApi::data(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), cscdqm::Dispatcher::getHisto(), betterConfigParser.BetterConfigParser::getResultingSection(), submitPVValidationJobs.BetterConfigParser::getResultingSection(), util.rrapi.RRApi::report(), rrapi.RRApi::report(), util.rrapi.RRApi::reports(), rrapi.RRApi::reports(), rrapi.RRApi::tables(), util.rrapi.RRApi::tables(), util.rrapi.RRApi::tags(), rrapi.RRApi::tags(), rrapi.RRApi::templates(), util.rrapi.RRApi::templates(), rrapi.RRApi::workspaces(), and util.rrapi.RRApi::workspaces().

29  {
30  if (typeid(histo) == EMUHistoDefT) {
31  return getEMU(histo.getId(), mo);
32  } else if (typeid(histo) == FEDHistoDefT) {
33  return getFED(histo.getId(), histo.getFEDId(), mo);
34  } else if (typeid(histo) == DDUHistoDefT) {
35  return getDDU(histo.getId(), histo.getDDUId(), mo);
36  } else if (typeid(histo) == CSCHistoDefT) {
37  return getCSC(histo.getId(), histo.getCrateId(), histo.getDMBId(), histo.getAddId(), mo);
38  } else if (typeid(histo) == ParHistoDefT) {
39  return getPar(histo.getId(), mo);
40  }
41 
42  return false;
43  }
const bool getFED(const HistoId &id, const HwId &fedId, MonitorObject *&mo)
Get FED MO on Histogram Id and FED Id.
Definition: CSCDQM_Cache.cc:66
static const std::type_info & FEDHistoDefT
const bool getEMU(const HistoId &id, MonitorObject *&mo)
Get EMU MO on Histogram Id.
Definition: CSCDQM_Cache.cc:51
const bool getPar(const HistoId &id, MonitorObject *&mo)
Get Parameter MO on Histogram Id.
static const std::type_info & CSCHistoDefT
static const std::type_info & ParHistoDefT
const bool getDDU(const HistoId &id, const HwId &dduId, MonitorObject *&mo)
Get DDU MO on Histogram Id and DDU Id.
Definition: CSCDQM_Cache.cc:92
static const std::type_info & DDUHistoDefT
static const std::type_info & EMUHistoDefT
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.
const bool cscdqm::Cache::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.

Parameters
idHistogram identifier
crateIdCSC Crate identifier
dmbIdCSC DMB identifier
moMonitoring Object to return
Returns
true if MO was found in cache and false otherwise

If not cached (last CSC) - find CSC

Get Monitor object from multi_index List

Definition at line 119 of file CSCDQM_Cache.cc.

References cscData, and cscPointer.

Referenced by cscdqm::Dispatcher::commonConstruct(), and get().

120  {
122  if (cscPointer == cscData.end() || cscPointer->crateId != crateId || cscPointer->dmbId != dmbId) {
123  cscPointer = cscData.find(boost::make_tuple(crateId, dmbId));
124  }
125 
127  if (cscPointer != cscData.end()) {
128  CSCHistoMapType::const_iterator hit = cscPointer->mos.find(boost::make_tuple(id, addId));
129  if (hit != cscPointer->mos.end()) {
130  mo = const_cast<MonitorObject*>(hit->mo);
131  return true;
132  }
133  }
134  return false;
135  }
CSCMapType::const_iterator cscPointer
Definition: CSCDQM_Cache.h:121
CSCMapType cscData
Definition: CSCDQM_Cache.h:119
const bool cscdqm::Cache::getDDU ( const HistoId id,
const HwId dduId,
MonitorObject *&  mo 
)

Get DDU MO on Histogram Id and DDU Id.

Parameters
idHistogram identifier
dduIdDDU identifier
moMonitoring Object to return
Returns
true if MO was found in cache and false otherwise

If not cached (last DDU) - find DDU

Get MO from static array

Definition at line 92 of file CSCDQM_Cache.cc.

References dduData, dduPointer, dduPointerValue, and gpuClustering::id.

Referenced by cscdqm::Dispatcher::commonConstruct(), and get().

92  {
94  if (dduPointerValue != dduId) {
95  dduPointer = dduData.find(dduId);
96  if (dduPointer == dduData.end()) {
97  dduPointerValue = 0;
98  return false;
99  }
100  dduPointerValue = dduId;
101  }
102 
104  if (dduPointer->second[id]) {
105  mo = dduPointer->second[id];
106  return true;
107  }
108  return false;
109  }
DDUMapType dduData
Definition: CSCDQM_Cache.h:112
uint16_t *__restrict__ id
HwId dduPointerValue
Definition: CSCDQM_Cache.h:116
DDUMapType::const_iterator dduPointer
Definition: CSCDQM_Cache.h:114
const bool cscdqm::Cache::getEMU ( const HistoId id,
MonitorObject *&  mo 
)

Get EMU MO on Histogram Id.

Parameters
idHistogram identifier
moMonitoring Object to return
Returns
true if MO was found in cache and false otherwise

Definition at line 51 of file CSCDQM_Cache.cc.

References data, and gpuClustering::id.

Referenced by cscdqm::Dispatcher::commonConstruct(), and get().

51  {
52  if (data[id]) {
53  mo = data[id];
54  return true;
55  }
56  return false;
57  }
uint16_t *__restrict__ id
MonitorObject * data[h::namesSize]
Definition: CSCDQM_Cache.h:102
const bool cscdqm::Cache::getFED ( const HistoId id,
const HwId fedId,
MonitorObject *&  mo 
)

Get FED MO on Histogram Id and FED Id.

Parameters
idHistogram identifier
fedIdFED identifier
moMonitoring Object to return
Returns
true if MO was found in cache and false otherwise

If not cached (last FED) - find FED

Get MO from static array

Definition at line 66 of file CSCDQM_Cache.cc.

References fedData, l1tstage2_dqm_sourceclient-live_cfg::fedId, fedPointer, fedPointerValue, and gpuClustering::id.

Referenced by cscdqm::Dispatcher::commonConstruct(), and get().

66  {
68  if (fedPointerValue != fedId) {
69  fedPointer = fedData.find(fedId);
70  if (fedPointer == fedData.end()) {
71  fedPointerValue = 0;
72  return false;
73  }
75  }
76 
78  if (fedPointer->second[id]) {
79  mo = fedPointer->second[id];
80  return true;
81  }
82  return false;
83  }
uint16_t *__restrict__ id
FEDMapType::const_iterator fedPointer
Definition: CSCDQM_Cache.h:107
FEDMapType fedData
Definition: CSCDQM_Cache.h:105
HwId fedPointerValue
Definition: CSCDQM_Cache.h:109
const bool cscdqm::Cache::getPar ( const HistoId id,
MonitorObject *&  mo 
)

Get Parameter MO on Histogram Id.

Parameters
idHistogram identifier
moMonitoring Object to return
Returns
true if MO was found in cache and false otherwise

Definition at line 143 of file CSCDQM_Cache.cc.

References data, and gpuClustering::id.

Referenced by cscdqm::Dispatcher::commonConstruct(), and get().

143  {
144  if (data[id]) {
145  mo = data[id];
146  return true;
147  }
148  return false;
149  }
uint16_t *__restrict__ id
MonitorObject * data[h::namesSize]
Definition: CSCDQM_Cache.h:102
const bool cscdqm::Cache::isBookedCSC ( const HwId crateId,
const HwId dmbId 
) const

Check if CSC was booked on given identifiers.

Parameters
crateIdCSC Crate Id
dmbIdCSC DMB Id
Returns
true if CSC was booked, false - otherwise

Definition at line 299 of file CSCDQM_Cache.cc.

References cscData.

Referenced by cscdqm::Dispatcher::book(), cscdqm::Dispatcher::commonConstruct(), and cscdqm::Dispatcher::getHisto().

299  {
300  CSCMapType::const_iterator it = cscData.find(boost::make_tuple(crateId, dmbId));
301  if (it != cscData.end()) {
302  return true;
303  }
304  return false;
305  }
CSCMapType cscData
Definition: CSCDQM_Cache.h:119
const bool cscdqm::Cache::isBookedDDU ( const HwId dduId) const

Check if DDU was booked on given identifier.

Parameters
dduIdDDU Id
Returns
true if DDU was booked, false - otherwise

Definition at line 322 of file CSCDQM_Cache.cc.

References dduData.

Referenced by cscdqm::Dispatcher::book(), cscdqm::Dispatcher::commonConstruct(), and cscdqm::Dispatcher::getHisto().

322  {
323  DDUMapType::const_iterator iter = dduData.find(dduId);
324  return (iter != dduData.end());
325  }
DDUMapType dduData
Definition: CSCDQM_Cache.h:112
const bool cscdqm::Cache::isBookedFED ( const HwId fedId) const

Check if FED was booked on given identifier.

Parameters
fedIdFED Id
Returns
true if FED was booked, false - otherwise

Definition at line 312 of file CSCDQM_Cache.cc.

References fedData.

Referenced by cscdqm::Dispatcher::book(), cscdqm::Dispatcher::commonConstruct(), and cscdqm::Dispatcher::getHisto().

312  {
313  FEDMapType::const_iterator iter = fedData.find(fedId);
314  return (iter != fedData.end());
315  }
FEDMapType fedData
Definition: CSCDQM_Cache.h:105
const bool cscdqm::Cache::nextBookedCSC ( unsigned int &  n,
unsigned int &  crateId,
unsigned int &  dmbId 
) const

Iterator to get booked CSC identifiers on enumerator.

Parameters
niterator (0 and up)
crateIdCSC Crate Id returned
dmbIdCSC DMB Id returned
Returns
true if CSC on n found, false - otherwise

Definition at line 244 of file CSCDQM_Cache.cc.

References cscData, and mps_fire::i.

Referenced by cscdqm::Dispatcher::commonConstruct().

244  {
245  if (n < cscData.size()) {
246  CSCMapType::const_iterator iter = cscData.begin();
247  for (unsigned int i = n; i > 0; i--)
248  iter++;
249  crateId = iter->crateId;
250  dmbId = iter->dmbId;
251  n++;
252  return true;
253  }
254  return false;
255  }
CSCMapType cscData
Definition: CSCDQM_Cache.h:119
const bool cscdqm::Cache::nextBookedDDU ( unsigned int &  n,
unsigned int &  dduId 
) const

Iterator to get booked DDU identifier on enumerator.

Parameters
niterator (0 and up)
dduIdDDU Id returned
Returns
true if DDU on n found, false - otherwise

Definition at line 281 of file CSCDQM_Cache.cc.

References dduData, and mps_fire::i.

281  {
282  if (n < dduData.size()) {
283  DDUMapType::const_iterator iter = dduData.begin();
284  for (unsigned int i = n; i > 0; i--)
285  iter++;
286  dduId = iter->first;
287  n++;
288  return true;
289  }
290  return false;
291  }
DDUMapType dduData
Definition: CSCDQM_Cache.h:112
const bool cscdqm::Cache::nextBookedFED ( unsigned int &  n,
unsigned int &  fedId 
) const

Iterator to get booked FED identifier on enumerator.

Utility methods

Parameters
niterator (0 and up)
fedIdFED Id returned
Returns
true if FED on n found, false - otherwise

Definition at line 263 of file CSCDQM_Cache.cc.

References fedData, and mps_fire::i.

263  {
264  if (n < fedData.size()) {
265  FEDMapType::const_iterator iter = fedData.begin();
266  for (unsigned int i = n; i > 0; i--)
267  iter++;
268  fedId = iter->first;
269  n++;
270  return true;
271  }
272  return false;
273  }
FEDMapType fedData
Definition: CSCDQM_Cache.h:105
void cscdqm::Cache::put ( const HistoDef histo,
MonitorObject mo 
)

Put Monitoring Object into cache.

Parameters
histoHistogram Definition
moMonitoring Object to put
Returns

EMU MO

FED MO

DDU MO

CSC MO

Parameter MO

Add histo (if mo is not null!) into lookup list

Definition at line 157 of file CSCDQM_Cache.cc.

References cscData, cscdqm::CSCHistoDefT, cscPointer, data, dduData, cscdqm::DDUHistoDefT, dduPointer, dduPointerValue, cscdqm::EMUHistoDefT, fedData, cscdqm::FEDHistoDefT, l1tstage2_dqm_sourceclient-live_cfg::fedId, fedPointer, fedPointerValue, cscdqm::HistoDef::getAddId(), cscdqm::HistoDef::getCrateId(), cscdqm::HistoDef::getDDUId(), cscdqm::HistoDef::getDMBId(), cscdqm::HistoDef::getFEDId(), cscdqm::HistoDef::getId(), mps_fire::i, gpuClustering::id, lookupData, cscdqm::h::namesSize, and cscdqm::ParHistoDefT.

Referenced by cscdqm::Dispatcher::book(), cscdqm::Dispatcher::commonConstruct(), and cscdqm::Dispatcher::getHisto().

157  {
158  HistoId id = histo.getId();
159 
161  if (typeid(histo) == EMUHistoDefT) {
162  data[id] = mo;
163  } else
164 
166  if (typeid(histo) == FEDHistoDefT) {
167  HwId fedId = histo.getFEDId();
168 
169  if (fedPointerValue != fedId) {
170  fedPointer = fedData.find(fedId);
171  }
172 
173  if (fedPointer == fedData.end()) {
174  MonitorObject** mos = new MonitorObject*[h::namesSize];
175  for (unsigned int i = 0; i < h::namesSize; i++)
176  mos[i] = nullptr;
177  fedPointer = fedData.insert(fedData.end(), std::make_pair(fedId, mos));
178  }
179 
180  fedPointer->second[id] = mo;
182 
183  } else
184 
186  if (typeid(histo) == DDUHistoDefT) {
187  HwId dduId = histo.getDDUId();
188 
189  if (dduPointerValue != dduId) {
190  dduPointer = dduData.find(dduId);
191  }
192 
193  if (dduPointer == dduData.end()) {
194  MonitorObject** mos = new MonitorObject*[h::namesSize];
195  for (unsigned int i = 0; i < h::namesSize; i++)
196  mos[i] = nullptr;
197  dduPointer = dduData.insert(dduData.end(), std::make_pair(dduId, mos));
198  }
199 
200  dduPointer->second[id] = mo;
201  dduPointerValue = dduId;
202 
203  } else
204 
206  if (typeid(histo) == CSCHistoDefT) {
207  HwId crateId = histo.getCrateId();
208  HwId dmbId = histo.getDMBId();
209  HwId addId = histo.getAddId();
210 
211  CSCHistoKeyType histoKey(id, addId, mo);
212 
213  if (cscPointer == cscData.end() || cscPointer->crateId != crateId || cscPointer->dmbId != dmbId) {
214  cscPointer = cscData.find(boost::make_tuple(crateId, dmbId));
215  }
216 
217  if (cscPointer == cscData.end()) {
218  CSCKeyType cscKey(crateId, dmbId);
219  cscPointer = cscData.insert(cscData.end(), cscKey);
220  }
221  CSCHistoMapType* mos = const_cast<CSCHistoMapType*>(&cscPointer->mos);
222  mos->insert(histoKey);
223 
224  } else
225 
227  if (typeid(histo) == ParHistoDefT) {
228  data[id] = mo;
229  }
230 
232  if (mo) {
233  lookupData.insert(lookupData.end(), LookupKeyType(histo, mo));
234  }
235  }
unsigned int HwId
static const std::type_info & FEDHistoDefT
DDUMapType dduData
Definition: CSCDQM_Cache.h:112
uint16_t *__restrict__ id
MonitorObject * data[h::namesSize]
Definition: CSCDQM_Cache.h:102
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:53
static const unsigned int namesSize
unsigned int HistoId
HwId dduPointerValue
Definition: CSCDQM_Cache.h:116
static const std::type_info & CSCHistoDefT
DDUMapType::const_iterator dduPointer
Definition: CSCDQM_Cache.h:114
CSCMapType::const_iterator cscPointer
Definition: CSCDQM_Cache.h:121
static const std::type_info & ParHistoDefT
FEDMapType::const_iterator fedPointer
Definition: CSCDQM_Cache.h:107
FEDMapType fedData
Definition: CSCDQM_Cache.h:105
static const std::type_info & DDUHistoDefT
CSCMapType cscData
Definition: CSCDQM_Cache.h:119
static const std::type_info & EMUHistoDefT
LookupMapType lookupData
Definition: CSCDQM_Cache.h:124
HwId fedPointerValue
Definition: CSCDQM_Cache.h:109

Member Data Documentation

CSCMapType cscdqm::Cache::cscData
private

Chamber MO List

Definition at line 119 of file CSCDQM_Cache.h.

Referenced by Cache(), getCSC(), isBookedCSC(), nextBookedCSC(), and put().

CSCMapType::const_iterator cscdqm::Cache::cscPointer
private

Pointer to the Last Chamber object used (cached)

Definition at line 121 of file CSCDQM_Cache.h.

Referenced by Cache(), getCSC(), and put().

MonitorObject* cscdqm::Cache::data[h::namesSize]
private
DDUMapType cscdqm::Cache::dduData
private

DDU MO List

Definition at line 112 of file CSCDQM_Cache.h.

Referenced by Cache(), getDDU(), isBookedDDU(), nextBookedDDU(), put(), and ~Cache().

DDUMapType::const_iterator cscdqm::Cache::dduPointer
private

Pointer to the Last DDU object used (cached)

Definition at line 114 of file CSCDQM_Cache.h.

Referenced by Cache(), getDDU(), and put().

HwId cscdqm::Cache::dduPointerValue
private

Last DDU id used (cached)

Definition at line 116 of file CSCDQM_Cache.h.

Referenced by Cache(), getDDU(), and put().

FEDMapType cscdqm::Cache::fedData
private

FED MO List

Definition at line 105 of file CSCDQM_Cache.h.

Referenced by Cache(), getFED(), isBookedFED(), nextBookedFED(), put(), and ~Cache().

FEDMapType::const_iterator cscdqm::Cache::fedPointer
private

Pointer to the Last FED object used (cached)

Definition at line 107 of file CSCDQM_Cache.h.

Referenced by Cache(), getFED(), and put().

HwId cscdqm::Cache::fedPointerValue
private

Last FED id used (cached)

Definition at line 109 of file CSCDQM_Cache.h.

Referenced by Cache(), getFED(), and put().

LookupMapType cscdqm::Cache::lookupData
private

MO Lookup List

Definition at line 124 of file CSCDQM_Cache.h.

Referenced by put().