CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
RPCMonitorRaw Class Reference

#include <RPCMonitorRaw.h>

Inheritance diagram for RPCMonitorRaw:
one::DQMEDAnalyzer< T > one::dqmimplementation::DQMBaseClass< T... >

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void bookHistograms (DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
 
 RPCMonitorRaw (const edm::ParameterSet &cfg)
 
 ~RPCMonitorRaw () override
 
- Public Member Functions inherited from one::DQMEDAnalyzer< T >
 DQMEDAnalyzer ()=default
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > const &)=delete
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > &&)=delete
 
 ~DQMEDAnalyzer () override=default
 

Private Attributes

MonitorElementme_e [3]
 
MonitorElementme_mapBadEvents
 
MonitorElementme_mapGoodEvents
 
MonitorElementme_t [3]
 
edm::EDGetTokenT< RPCRawDataCountsrpcRawDataCountsTag_
 
edm::ParameterSet theConfig
 
unsigned int theWatchedErrorHistoPos [10]
 
std::vector< MonitorElement * > theWatchedErrorHistos [3]
 

Detailed Description

Analyse errors in raw data stream as RPCRawDataCounts produced by RPCRawToDigi

Definition at line 22 of file RPCMonitorRaw.h.

Constructor & Destructor Documentation

RPCMonitorRaw::RPCMonitorRaw ( const edm::ParameterSet cfg)
explicit

Definition at line 28 of file RPCMonitorRaw.cc.

References jets_cff::algos, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), mps_fire::i, rpcRawDataCountsTag_, and theWatchedErrorHistoPos.

28  :theConfig(cfg){
29 
30  rpcRawDataCountsTag_ = consumes<RPCRawDataCounts>(cfg.getParameter<edm::InputTag>("rpcRawDataCountsTag"));
31 
32  for (unsigned int i=0; i<10;i++) theWatchedErrorHistoPos[i]=0;
33  std::vector<int> algos = cfg.getUntrackedParameter<std::vector<int> >("watchedErrors");
34  for (std::vector<int>::const_iterator it=algos.begin();it!= algos.end(); ++it) {
35  unsigned int ialgo = *it;
36  if (ialgo < 10) theWatchedErrorHistoPos[ialgo]=1; // real position initialisain is in begin job. here mark just switched on.
37  }
38 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< RPCRawDataCounts > rpcRawDataCountsTag_
Definition: RPCMonitorRaw.h:47
edm::ParameterSet theConfig
Definition: RPCMonitorRaw.h:38
unsigned int theWatchedErrorHistoPos[10]
Definition: RPCMonitorRaw.h:42
RPCMonitorRaw::~RPCMonitorRaw ( )
override

Definition at line 40 of file RPCMonitorRaw.cc.

References LogTrace.

40 { LogTrace("") << "RPCMonitorRaw destructor"; }
#define LogTrace(id)

Member Function Documentation

void RPCMonitorRaw::analyze ( const edm::Event ev,
const edm::EventSetup es 
)
override

Definition at line 85 of file RPCMonitorRaw.cc.

References LinkBoardElectronicIndex::dccInputChannelNum, relativeConstraints::error, MonitorElement::Fill(), edm::Event::getByToken(), training_settings::idx, me_e, me_mapBadEvents, me_mapGoodEvents, me_t, edm::Handle< T >::product(), rpcRawDataCountsTag_, LinkBoardElectronicIndex::tbLinkInputNum, RPCRawDataCounts::theBadEvents, RPCRawDataCounts::theGoodEvents, RPCRawDataCounts::theReadoutErrors, RPCRawDataCounts::theRecordTypes, theWatchedErrorHistoPos, theWatchedErrorHistos, rpcrawtodigi::ReadoutError::type(), and rpcrawtodigi::ReadoutError::where().

86 {
87 
89  ev.getByToken(rpcRawDataCountsTag_, rawCounts);
90  const RPCRawDataCounts & counts = *rawCounts.product();
91 
92  //
93  // record type
94  //
95  for (IT it=counts.theRecordTypes.begin(); it != counts.theRecordTypes.end(); ++it)
96  me_t[it->first.first-790]->Fill(it->first.second,it->second);
97 
98  //
99  // good events topology
100  //
101  for (IT it = counts.theGoodEvents.begin(); it != counts.theGoodEvents.end(); ++it)
102  me_mapGoodEvents->Fill(it->first.second, it->first.first, it->second);
103 
104  //
105  // bad events topology
106  //
107  for (IT it = counts.theBadEvents.begin(); it != counts.theBadEvents.end(); ++it)
108  me_mapBadEvents->Fill(it->first.second, it->first.first, it->second);
109 
110 
111  //
112  // readout errors
113  //
114  for (IT it=counts.theReadoutErrors.begin(); it != counts.theReadoutErrors.end(); ++it) {
115  rpcrawtodigi::ReadoutError error(it->first.second);
116  LinkBoardElectronicIndex ele = error.where();
118 
119  int fed = it->first.first;
120  me_e[fed-790]->Fill(type, it->second);
121 
122  //
123  // in addition fill location map for selected errors
124  //
126  if ( idx >= 0) {
127  std::vector<MonitorElement* > & wh = theWatchedErrorHistos[fed-790];
128  MonitorElement* me = wh[idx];
129  me->Fill(ele.dccInputChannelNum, ele.tbLinkInputNum, it->second);
130  }
131  }
132 
133 
134 // for (int i=0; i<3; ++i) {
135 // me_t[i]->update();
136 // me_e[i]->update();
137 // std::vector<MonitorElement* > & wh = theWatchedErrorHistos[i];
138 // for (std::vector<MonitorElement* >::iterator it=wh.begin(); it != wh.end(); ++it) (*it)->update();
139 // }
140 // me_mapGoodEvents->update();
141 // me_mapBadEvents->update();
142 
143 
144 
145 }
type
Definition: HCALResponse.h:21
std::map< std::pair< int, int >, int > theReadoutErrors
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
MonitorElement * me_mapBadEvents
Definition: RPCMonitorRaw.h:36
std::vector< MonitorElement * > theWatchedErrorHistos[3]
Definition: RPCMonitorRaw.h:39
void Fill(long long x)
MonitorElement * me_mapGoodEvents
Definition: RPCMonitorRaw.h:35
edm::EDGetTokenT< RPCRawDataCounts > rpcRawDataCountsTag_
Definition: RPCMonitorRaw.h:47
std::map< std::pair< int, int >, int > theRecordTypes
MonitorElement * me_t[3]
Definition: RPCMonitorRaw.h:33
std::vector< LinkConnSpec >::const_iterator IT
unsigned int theWatchedErrorHistoPos[10]
Definition: RPCMonitorRaw.h:42
std::map< std::pair< int, int >, int > theGoodEvents
std::map< std::pair< int, int >, int > theBadEvents
T const * product() const
Definition: Handle.h:74
MonitorElement * me_e[3]
Definition: RPCMonitorRaw.h:34
void RPCMonitorRaw::bookHistograms ( DQMStore::IBooker ibooker,
edm::Run const &  iRun,
edm::EventSetup const &  iSetup 
)
override

Definition at line 43 of file RPCMonitorRaw.cc.

References DQMStore::IBooker::book1D(), DQMStore::IBooker::book2D(), DQMStore::IBooker::cd(), RPCRawDataCountsHistoMaker::emptyReadoutErrorHisto(), RPCRawDataCountsHistoMaker::emptyReadoutErrorMapHisto(), RPCRawDataCountsHistoMaker::emptyRecordTypeHisto(), MonitorElement::getTH2F(), trackerHits::histo, mps_fire::i, me_e, me_mapBadEvents, me_mapGoodEvents, me_t, DQMStore::IBooker::setCurrentFolder(), theWatchedErrorHistoPos, and theWatchedErrorHistos.

45  {
46  ibooker.cd();
47  ibooker.setCurrentFolder("RPC/LinkMonitor");
48 
49  me_t[0]=ibooker.book1D("recordType_790",RPCRawDataCountsHistoMaker::emptyRecordTypeHisto(790));
50  me_t[1]=ibooker.book1D("recordType_791",RPCRawDataCountsHistoMaker::emptyRecordTypeHisto(791));
51  me_t[2]=ibooker.book1D("recordType_792",RPCRawDataCountsHistoMaker::emptyRecordTypeHisto(792));
52  for (int i=0;i<3;++i)me_t[i]->getTH1F()->SetStats(false);
53 
54  me_e[0]=ibooker.book1D("readoutErrors_790",RPCRawDataCountsHistoMaker::emptyReadoutErrorHisto(790));
55  me_e[1]=ibooker.book1D("readoutErrors_791",RPCRawDataCountsHistoMaker::emptyReadoutErrorHisto(791));
56  me_e[2]=ibooker.book1D("readoutErrors_792",RPCRawDataCountsHistoMaker::emptyReadoutErrorHisto(792));
57  for (int i=0;i<3;++i)me_e[i]->getTH1F()->SetStats(false);
58 
59  me_mapGoodEvents=ibooker.book2D("mapGoodRecords","mapGoodRecords",36,-0.5,35.5, 3, 789.5,792.5);
60  me_mapGoodEvents->getTH2F()->SetNdivisions(3,"y");
61  me_mapGoodEvents->getTH2F()->SetXTitle("rmb");
62  me_mapGoodEvents->getTH2F()->SetYTitle("fed");
63  me_mapGoodEvents->getTH2F()->SetStats(false);
64  me_mapBadEvents =ibooker.book2D("mapErrorRecords", "mapErrorRecords", 36,-0.5,35.5, 3, 789.5,792.5);
65  me_mapBadEvents->getTH2F()->SetXTitle("fed");
66  me_mapBadEvents->getTH2F()->SetYTitle("rmb");
67  me_mapBadEvents->getTH2F()->SetNdivisions(3,"y");
68  me_mapBadEvents->getTH2F()->SetStats(false);
69 
70  for (unsigned int i=0; i<=9; ++i) {
72  for (unsigned int fed=790; fed <=792; ++fed) {
74  MonitorElement* watched = ibooker.book2D(histo->GetName(),histo);
75  theWatchedErrorHistos[fed-790].push_back(watched);
77  }
78  }
79  }
80 
81 }
MonitorElement * me_mapBadEvents
Definition: RPCMonitorRaw.h:36
std::vector< MonitorElement * > theWatchedErrorHistos[3]
Definition: RPCMonitorRaw.h:39
static TH1F * emptyReadoutErrorHisto(int fedId)
MonitorElement * me_mapGoodEvents
Definition: RPCMonitorRaw.h:35
MonitorElement * me_t[3]
Definition: RPCMonitorRaw.h:33
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
static TH2F * emptyReadoutErrorMapHisto(int fedId, int type)
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
unsigned int theWatchedErrorHistoPos[10]
Definition: RPCMonitorRaw.h:42
TH2F * getTH2F() const
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:109
static TH1F * emptyRecordTypeHisto(int fedId)
MonitorElement * me_e[3]
Definition: RPCMonitorRaw.h:34

Member Data Documentation

MonitorElement* RPCMonitorRaw::me_e[3]
private

Definition at line 34 of file RPCMonitorRaw.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* RPCMonitorRaw::me_mapBadEvents
private

Definition at line 36 of file RPCMonitorRaw.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* RPCMonitorRaw::me_mapGoodEvents
private

Definition at line 35 of file RPCMonitorRaw.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* RPCMonitorRaw::me_t[3]
private

Definition at line 33 of file RPCMonitorRaw.h.

Referenced by analyze(), and bookHistograms().

edm::EDGetTokenT<RPCRawDataCounts> RPCMonitorRaw::rpcRawDataCountsTag_
private

Definition at line 47 of file RPCMonitorRaw.h.

Referenced by analyze(), and RPCMonitorRaw().

edm::ParameterSet RPCMonitorRaw::theConfig
private

Definition at line 38 of file RPCMonitorRaw.h.

unsigned int RPCMonitorRaw::theWatchedErrorHistoPos[10]
private

Definition at line 42 of file RPCMonitorRaw.h.

Referenced by analyze(), bookHistograms(), and RPCMonitorRaw().

std::vector<MonitorElement* > RPCMonitorRaw::theWatchedErrorHistos[3]
private

Definition at line 39 of file RPCMonitorRaw.h.

Referenced by analyze(), and bookHistograms().