CMS 3D CMS Logo

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

#include <DQM/SiStripMonitorCluster/interface/SiStripDcsInfo.h>

Inheritance diagram for SiStripDcsInfo:
edm::EDAnalyzer

Classes

struct  SubDetMEs
 

Public Member Functions

 SiStripDcsInfo (const edm::ParameterSet &ps)
 Constructor. More...
 
virtual ~SiStripDcsInfo ()
 Destructor. More...
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Member Functions

void addBadModules ()
 
void analyze (edm::Event const &, edm::EventSetup const &)
 Analyze. More...
 
void beginJob ()
 BeginJob. More...
 
void beginLuminosityBlock (edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &eSetup)
 Begin Luminosity Block. More...
 
void beginRun (edm::Run const &run, edm::EventSetup const &eSetup)
 Begin Run. More...
 
void bookStatus ()
 
void endLuminosityBlock (edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &iSetup)
 End Of Luminosity. More...
 
void endRun (edm::Run const &run, edm::EventSetup const &eSetup)
 EndRun. More...
 
void fillDummyStatus ()
 
void fillStatus ()
 
void readCabling (edm::EventSetup const &)
 
void readStatus (edm::EventSetup const &)
 

Private Attributes

bool bookedStatus_
 
MonitorElementDcsFraction_
 
edm::ESHandle< SiStripDetCablingdetCabling_
 
DQMStoredqmStore_
 
unsigned long long m_cacheIDCabling_
 
unsigned long long m_cacheIDDcs_
 
int nFEDConnected_
 
int nLumiAnalysed_
 
edm::ESHandle< SiStripDetVOffsiStripDetVOff_
 
std::map< std::string, SubDetMEsSubDetMEsMap
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 

Detailed Description

Description: Checks the # of SiStrip FEDs from DAQ Usage: <usage>

Definition at line 41 of file SiStripDcsInfo.h.

Constructor & Destructor Documentation

SiStripDcsInfo::SiStripDcsInfo ( const edm::ParameterSet ps)

Constructor.

Definition at line 32 of file SiStripDcsInfo.cc.

References LogDebug.

32  :
35  m_cacheIDDcs_(0),
36  bookedStatus_(false),
38 {
39  // Create MessageSender
40  LogDebug( "SiStripDcsInfo") << "SiStripDcsInfo::Deleting SiStripDcsInfo ";
41 }
#define LogDebug(id)
DQMStore * dqmStore_
unsigned long long m_cacheIDDcs_
unsigned long long m_cacheIDCabling_
SiStripDcsInfo::~SiStripDcsInfo ( )
virtual

Destructor.

Definition at line 45 of file SiStripDcsInfo.cc.

References LogDebug.

45  {
46  LogDebug("SiStripDcsInfo") << "SiStripDcsInfo::Deleting SiStripDcsInfo ";
47 
48 }
#define LogDebug(id)

Member Function Documentation

void SiStripDcsInfo::addBadModules ( )
private

Definition at line 306 of file SiStripDcsInfo.cc.

References DQMStore::bookInt(), DQMStore::cd(), dqmStore_, MonitorElement::Fill(), DQMStore::get(), MonitorElement::getIntValue(), SiStripUtility::goToDir(), DQMStore::pwd(), MonitorElement::Reset(), SiStripUtility::setBadModuleFlag(), DQMStore::setCurrentFolder(), SubDetMEsMap, and GlobalPosition_Frontier_DevDB_cff::tag.

Referenced by endRun().

306  {
307 
308  dqmStore_->cd();
309  std::string mdir = "MechanicalView";
310  if (!SiStripUtility::goToDir(dqmStore_, mdir)) {
311  dqmStore_->setCurrentFolder("SiStrip/"+mdir);
312  }
313  std::string mechanical_dir = dqmStore_->pwd();
314  std::string tag = "DCSError";
315 
316  for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) {
317  std::vector<uint32_t> badModules = it->second.FaultyDetectors;
318  for (std::vector<uint32_t>::iterator ibad = badModules.begin();
319  ibad != badModules.end(); ibad++) {
320 
321  std::string bad_module_folder = mechanical_dir + "/" +
322  it->second.folder_name + "/"
323  "BadModuleList";
324  dqmStore_->setCurrentFolder(bad_module_folder);
325 
326  std::ostringstream detid_str;
327  detid_str << (*ibad);
328  std::string full_path = bad_module_folder + "/" + detid_str.str();
329  MonitorElement* me = dqmStore_->get(full_path);
330  uint16_t flag = 0;
331  if (me) {
332  flag = me->getIntValue();
333  me->Reset();
334  } else me = dqmStore_->bookInt(detid_str.str());
336  me->Fill(flag);
337  }
338  }
339  dqmStore_->cd();
340 }
static void setBadModuleFlag(std::string &hname, uint16_t &flg)
DQMStore * dqmStore_
long int flag
Definition: mlp_lapack.h:47
void cd(void)
go to top directory (ie. root)
Definition: DQMStore.cc:406
void Fill(long long x)
std::map< std::string, SubDetMEs > SubDetMEsMap
MonitorElement * get(const std::string &path) const
get ME from full pathname (e.g. &quot;my/long/dir/my_histo&quot;)
Definition: DQMStore.cc:1468
int64_t getIntValue(void) const
MonitorElement * bookInt(const char *name)
Book int.
Definition: DQMStore.cc:624
void Reset(void)
reset ME (ie. contents, errors, etc)
static bool goToDir(DQMStore *dqm_store, std::string name)
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
const std::string & pwd(void) const
Definition: DQMStore.cc:401
void SiStripDcsInfo::analyze ( edm::Event const &  event,
edm::EventSetup const &  eSetup 
)
privatevirtual

Analyze.

Implements edm::EDAnalyzer.

Definition at line 131 of file SiStripDcsInfo.cc.

131  {
132 }
void SiStripDcsInfo::beginJob ( void  )
privatevirtual

BeginJob.

Reimplemented from edm::EDAnalyzer.

Definition at line 52 of file SiStripDcsInfo.cc.

References SiStripDcsInfo::SubDetMEs::DcsFractionME, SiStripDcsInfo::SubDetMEs::FaultyDetectors, SiStripDcsInfo::SubDetMEs::folder_name, SubDetMEsMap, GlobalPosition_Frontier_DevDB_cff::tag, and SiStripDcsInfo::SubDetMEs::TotalDetectors.

52  {
53  std::string tag;
54  SubDetMEs local_mes;
55 
56  tag = "TIB";
57  local_mes.folder_name = "TIB";
58  local_mes.DcsFractionME = 0;
59  local_mes.TotalDetectors = 0;
60  local_mes.FaultyDetectors.clear();
61  SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes));
62 
63  tag = "TOB";
64  local_mes.folder_name = "TOB";
65  local_mes.DcsFractionME = 0;
66  local_mes.TotalDetectors = 0;
67  local_mes.FaultyDetectors.clear();
68  SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes));
69 
70  tag = "TECB";
71  local_mes.folder_name = "TEC/side_1";
72  local_mes.DcsFractionME = 0;
73  local_mes.TotalDetectors = 0;
74  local_mes.FaultyDetectors.clear();
75  SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes));
76 
77  tag = "TECF";
78  local_mes.folder_name = "TEC/side_2";
79  local_mes.DcsFractionME = 0;
80  local_mes.TotalDetectors = 0;
81  local_mes.FaultyDetectors.clear();
82  SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes));
83 
84  tag = "TIDB";
85  local_mes.folder_name = "TID/side_1";
86  local_mes.DcsFractionME = 0;
87  local_mes.TotalDetectors = 0;
88  local_mes.FaultyDetectors.clear();
89  SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes));
90 
91  tag = "TIDF";
92  local_mes.folder_name = "TID/side_2";
93  local_mes.DcsFractionME = 0;
94  local_mes.TotalDetectors = 0;
95  local_mes.FaultyDetectors.clear();
96  SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes));
97 }
std::map< std::string, SubDetMEs > SubDetMEsMap
void SiStripDcsInfo::beginLuminosityBlock ( edm::LuminosityBlock const &  lumiSeg,
edm::EventSetup const &  eSetup 
)
privatevirtual

Begin Luminosity Block.

Reimplemented from edm::EDAnalyzer.

Definition at line 136 of file SiStripDcsInfo.cc.

References LogDebug, nFEDConnected_, nLumiAnalysed_, readStatus(), and SubDetMEsMap.

136  {
137  LogDebug( "SiStripDcsInfo") << "SiStripDcsInfo::beginLuminosityBlock";
138 
139  if (nFEDConnected_ == 0) return;
140 
141  // initialise BadModule list
142  for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) {
143  it->second.FaultyDetectors.clear();
144  }
145  readStatus(eSetup);
146  nLumiAnalysed_++;
147 }
#define LogDebug(id)
std::map< std::string, SubDetMEs > SubDetMEsMap
void readStatus(edm::EventSetup const &)
void SiStripDcsInfo::beginRun ( edm::Run const &  run,
edm::EventSetup const &  eSetup 
)
privatevirtual

Begin Run.

Reimplemented from edm::EDAnalyzer.

Definition at line 101 of file SiStripDcsInfo.cc.

References bookStatus(), fillDummyStatus(), edm::EventSetup::find(), edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), edm::ESHandleBase::isValid(), LogDebug, FEDNumbering::MAXSiStripFEDID, FEDNumbering::MINSiStripFEDID, nFEDConnected_, and readCabling().

101  {
102  LogDebug ("SiStripDcsInfo") <<"SiStripDcsInfo:: Begining of Run";
103  nFEDConnected_ = 0;
104  const int siStripFedIdMin = FEDNumbering::MINSiStripFEDID;
105  const int siStripFedIdMax = FEDNumbering::MAXSiStripFEDID;
106 
107  // Count Tracker FEDs from RunInfo
109  if( eSetup.find( recordKey ) != 0) {
110 
111  edm::ESHandle<RunInfo> sumFED;
112  eSetup.get<RunInfoRcd>().get(sumFED);
113 
114  if ( sumFED.isValid() ) {
115  std::vector<int> FedsInIds= sumFED->m_fed_in;
116  for(unsigned int it = 0; it < FedsInIds.size(); ++it) {
117  int fedID = FedsInIds[it];
118  if(fedID>=siStripFedIdMin && fedID<=siStripFedIdMax) ++nFEDConnected_;
119  }
120  LogDebug ("SiStripDcsInfo") << " SiStripDcsInfo :: Connected FEDs " << nFEDConnected_;
121  }
122  }
123 
124  bookStatus();
125  fillDummyStatus();
126  if (nFEDConnected_ > 0) readCabling(eSetup);
127 }
#define LogDebug(id)
void readCabling(edm::EventSetup const &)
bool isValid() const
Definition: ESHandle.h:37
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
Definition: HCTypeTag.cc:129
void SiStripDcsInfo::bookStatus ( )
private

Definition at line 177 of file SiStripDcsInfo.cc.

References bookedStatus_, DQMStore::bookFloat(), DQMStore::cd(), DcsFraction_, SiStripDcsInfo::SubDetMEs::DcsFractionME, dqmStore_, SiStripUtility::getTopFolderPath(), DQMStore::setCurrentFolder(), MonitorElement::setLumiFlag(), and SubDetMEsMap.

Referenced by beginRun(), fillDummyStatus(), and fillStatus().

177  {
178  if (!bookedStatus_) {
179  std::string strip_dir = "";
180  SiStripUtility::getTopFolderPath(dqmStore_, "SiStrip", strip_dir);
181  if (strip_dir.size() > 0) dqmStore_->setCurrentFolder(strip_dir+"/EventInfo");
182  else dqmStore_->setCurrentFolder("SiStrip/EventInfo");
183 
184  DcsFraction_= dqmStore_->bookFloat("DCSSummary");
185 
187 
188  dqmStore_->cd();
189  if (strip_dir.size() > 0) dqmStore_->setCurrentFolder(strip_dir+"/EventInfo/DCSContents");
190  else dqmStore_->setCurrentFolder("SiStrip/EventInfo/DCSContents");
191  for (std::map<std::string,SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) {
192  SubDetMEs local_mes;
193  std::string me_name;
194  me_name = "SiStrip_" + it->first;
195  it->second.DcsFractionME = dqmStore_->bookFloat(me_name);
196  it->second.DcsFractionME->setLumiFlag();
197  }
198  bookedStatus_ = true;
199  dqmStore_->cd();
200  }
201 }
DQMStore * dqmStore_
void cd(void)
go to top directory (ie. root)
Definition: DQMStore.cc:406
MonitorElement * bookFloat(const char *name)
Book float.
Definition: DQMStore.cc:654
std::map< std::string, SubDetMEs > SubDetMEsMap
MonitorElement * DcsFraction_
void setLumiFlag(void)
this ME is meant to be stored for each luminosity section
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
static void getTopFolderPath(DQMStore *dqm_store, std::string type, std::string &path)
void SiStripDcsInfo::endLuminosityBlock ( edm::LuminosityBlock const &  lumiSeg,
edm::EventSetup const &  iSetup 
)
privatevirtual

End Of Luminosity.

Reimplemented from edm::EDAnalyzer.

Definition at line 152 of file SiStripDcsInfo.cc.

References fillStatus(), LogDebug, nFEDConnected_, and readStatus().

152  {
153  LogDebug( "SiStripDcsInfo") << "SiStripDcsInfo::endLuminosityBlock";
154 
155  if (nFEDConnected_ == 0) return;
156  readStatus(eSetup);
157  fillStatus();
158 }
#define LogDebug(id)
void readStatus(edm::EventSetup const &)
void SiStripDcsInfo::endRun ( edm::Run const &  run,
edm::EventSetup const &  eSetup 
)
privatevirtual

EndRun.

Reimplemented from edm::EDAnalyzer.

Definition at line 162 of file SiStripDcsInfo.cc.

References addBadModules(), fillStatus(), LogDebug, nFEDConnected_, readStatus(), and SubDetMEsMap.

162  {
163  LogDebug ("SiStripDcsInfo") <<"SiStripDcsInfo::EndRun";
164 
165  if (nFEDConnected_ == 0) return;
166 
167  for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) {
168  it->second.FaultyDetectors.clear();
169  }
170  readStatus(eSetup);
171  fillStatus();
172  addBadModules();
173 }
#define LogDebug(id)
std::map< std::string, SubDetMEs > SubDetMEsMap
void readStatus(edm::EventSetup const &)
void SiStripDcsInfo::fillDummyStatus ( )
private

Definition at line 292 of file SiStripDcsInfo.cc.

References bookedStatus_, bookStatus(), DcsFraction_, MonitorElement::Fill(), MonitorElement::Reset(), and SubDetMEsMap.

Referenced by beginRun().

292  {
293  if (!bookedStatus_) bookStatus();
294  if (bookedStatus_) {
295  for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) {
296  it->second.DcsFractionME->Reset();
297  it->second.DcsFractionME->Fill(-1.0);
298  }
299  DcsFraction_->Reset();
300  DcsFraction_->Fill(-1.0);
301  }
302 }
void Fill(long long x)
std::map< std::string, SubDetMEs > SubDetMEsMap
MonitorElement * DcsFraction_
void Reset(void)
reset ME (ie. contents, errors, etc)
void SiStripDcsInfo::fillStatus ( )
private

Definition at line 264 of file SiStripDcsInfo.cc.

References bookedStatus_, bookStatus(), DcsFraction_, MonitorElement::Fill(), nFEDConnected_, MonitorElement::Reset(), and SubDetMEsMap.

Referenced by endLuminosityBlock(), and endRun().

264  {
265  if (!bookedStatus_) bookStatus();
266  if (bookedStatus_) {
267  float total_det = 0.0;
268  float faulty_det = 0.0;
269  float fraction;
270  for (std::map<std::string,SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) {
271  int total_subdet = it->second.TotalDetectors;
272  int faulty_subdet = it->second.FaultyDetectors.size();
273  if (nFEDConnected_ == 0 || total_subdet == 0) fraction = -1;
274  else fraction = 1.0 - faulty_subdet*1.0/total_subdet;
275  it->second.DcsFractionME->Reset();
276  it->second.DcsFractionME->Fill(fraction);
277  edm::LogInfo( "SiStripDcsInfo") << " SiStripDcsInfo::fillStatus : Sub Detector "
278  << it->first << " Total Number " << total_subdet
279  << " Faulty ones " << faulty_subdet;
280  total_det += total_subdet;
281  faulty_det += faulty_subdet;
282  }
283  if (nFEDConnected_ == 0 || total_det == 0) fraction = -1.0;
284  else fraction = 1 - faulty_det/total_det;
285  DcsFraction_->Reset();
286  DcsFraction_->Fill(fraction);
287  }
288 }
void Fill(long long x)
std::map< std::string, SubDetMEs > SubDetMEsMap
MonitorElement * DcsFraction_
void Reset(void)
reset ME (ie. contents, errors, etc)
void SiStripDcsInfo::readCabling ( edm::EventSetup const &  eSetup)
private

Definition at line 205 of file SiStripDcsInfo.cc.

References detCabling_, edm::EventSetup::get(), SiStripUtility::getSubDetectorTag(), LogDebug, m_cacheIDCabling_, xuti::subdet_tag(), and SubDetMEsMap.

Referenced by beginRun().

205  {
206  unsigned long long cacheID = eSetup.get<SiStripFedCablingRcd>().cacheIdentifier();
207  if (m_cacheIDCabling_ != cacheID) {
208  m_cacheIDCabling_ = cacheID;
209  LogDebug("SiStripDcsInfo") <<"SiStripDcsInfo::readCabling : "
210  << " Change in Cache";
211  eSetup.get<SiStripDetCablingRcd>().get(detCabling_);
212 
213  std::vector<uint32_t> SelectedDetIds;
214  detCabling_->addActiveDetectorsRawIds(SelectedDetIds);
215  LogDebug( "SiStripDcsInfo") << " SiStripDcsInfo::readCabling : "
216  << " Total Detectors " << SelectedDetIds.size();
217 
218 
219  // initialise total # of detectors first
220  for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) {
221  it->second.TotalDetectors = 0;
222  }
223 
224  for (std::vector<uint32_t>::const_iterator idetid=SelectedDetIds.begin(); idetid != SelectedDetIds.end(); ++idetid){
225  uint32_t detId = *idetid;
226  if (detId == 0 || detId == 0xFFFFFFFF) continue;
227  std::string subdet_tag;
228  SiStripUtility::getSubDetectorTag(detId,subdet_tag);
229 
230  std::map<std::string, SubDetMEs>::iterator iPos = SubDetMEsMap.find(subdet_tag);
231  if (iPos != SubDetMEsMap.end()){
232  iPos->second.TotalDetectors++;
233  }
234  }
235  }
236 }
#define LogDebug(id)
static void getSubDetectorTag(uint32_t det_id, std::string &subdet_tag)
std::map< std::string, SubDetMEs > SubDetMEsMap
const std::string subdet_tag("SubDet")
edm::ESHandle< SiStripDetCabling > detCabling_
unsigned long long m_cacheIDCabling_
void SiStripDcsInfo::readStatus ( edm::EventSetup const &  eSetup)
private

Definition at line 240 of file SiStripDcsInfo.cc.

References detCabling_, spr::find(), edm::EventSetup::get(), SiStripUtility::getSubDetectorTag(), LogDebug, siStripDetVOff_, xuti::subdet_tag(), and SubDetMEsMap.

Referenced by beginLuminosityBlock(), endLuminosityBlock(), and endRun().

240  {
241 
242  eSetup.get<SiStripDetVOffRcd>().get(siStripDetVOff_);
243  std::vector <uint32_t> FaultyDetIds;
244  siStripDetVOff_->getDetIds(FaultyDetIds);
245  LogDebug( "SiStripDcsInfo") << " SiStripDcsInfo::readStatus : "
246  << " Faulty Detectors " << FaultyDetIds.size();
247  // Read and fille bad modules
248  for (std::vector<uint32_t>::const_iterator ihvoff=FaultyDetIds.begin(); ihvoff!=FaultyDetIds.end();++ihvoff){
249  uint32_t detId_hvoff = (*ihvoff);
250  if (!detCabling_->IsConnected(detId_hvoff)) continue;
251  std::string subdet_tag;
252  SiStripUtility::getSubDetectorTag(detId_hvoff,subdet_tag);
253 
254  std::map<std::string, SubDetMEs>::iterator iPos = SubDetMEsMap.find(subdet_tag);
255  if (iPos != SubDetMEsMap.end()){
256  std::vector<uint32_t>::iterator ibad = std::find(iPos->second.FaultyDetectors.begin(), iPos->second.FaultyDetectors.end(), detId_hvoff);
257  if (ibad == iPos->second.FaultyDetectors.end()) iPos->second.FaultyDetectors.push_back( detId_hvoff);
258  }
259  }
260 }
#define LogDebug(id)
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
static void getSubDetectorTag(uint32_t det_id, std::string &subdet_tag)
std::map< std::string, SubDetMEs > SubDetMEsMap
const std::string subdet_tag("SubDet")
edm::ESHandle< SiStripDetVOff > siStripDetVOff_
edm::ESHandle< SiStripDetCabling > detCabling_

Member Data Documentation

bool SiStripDcsInfo::bookedStatus_
private

Definition at line 94 of file SiStripDcsInfo.h.

Referenced by bookStatus(), fillDummyStatus(), and fillStatus().

MonitorElement* SiStripDcsInfo::DcsFraction_
private

Definition at line 82 of file SiStripDcsInfo.h.

Referenced by bookStatus(), fillDummyStatus(), and fillStatus().

edm::ESHandle< SiStripDetCabling > SiStripDcsInfo::detCabling_
private

Definition at line 101 of file SiStripDcsInfo.h.

Referenced by readCabling(), and readStatus().

DQMStore* SiStripDcsInfo::dqmStore_
private

Definition at line 81 of file SiStripDcsInfo.h.

Referenced by addBadModules(), and bookStatus().

unsigned long long SiStripDcsInfo::m_cacheIDCabling_
private

Definition at line 92 of file SiStripDcsInfo.h.

Referenced by readCabling().

unsigned long long SiStripDcsInfo::m_cacheIDDcs_
private

Definition at line 93 of file SiStripDcsInfo.h.

int SiStripDcsInfo::nFEDConnected_
private
int SiStripDcsInfo::nLumiAnalysed_
private

Definition at line 99 of file SiStripDcsInfo.h.

Referenced by beginLuminosityBlock().

edm::ESHandle<SiStripDetVOff> SiStripDcsInfo::siStripDetVOff_
private

Definition at line 96 of file SiStripDcsInfo.h.

Referenced by readStatus().

std::map<std::string, SubDetMEs> SiStripDcsInfo::SubDetMEsMap
private