CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
TotemTimingDQMSource::GlobalPlots Struct Reference

plots related to the whole system More...

Public Member Functions

 GlobalPlots ()
 
 GlobalPlots (DQMStore::IBooker &ibooker)
 

Public Attributes

MonitorElementdigiSentPercentage = 0
 

Detailed Description

plots related to the whole system

Definition at line 116 of file TotemTimingDQMSource.cc.

Constructor & Destructor Documentation

TotemTimingDQMSource::GlobalPlots::GlobalPlots ( )
inline

Definition at line 120 of file TotemTimingDQMSource.cc.

120 {}
TotemTimingDQMSource::GlobalPlots::GlobalPlots ( DQMStore::IBooker ibooker)

Definition at line 250 of file TotemTimingDQMSource.cc.

References DQMStore::IBooker::book2D(), and DQMStore::IBooker::setCurrentFolder().

251 {
252  ibooker.setCurrentFolder("CTPPS/TimingFastSilicon");
253 
254  digiSentPercentage = ibooker.book2D( "sent digis percentage",
255  "sent digis percentage (sampic);board + 0.5 sampic;channel",
256  14, -0.5, 6.5, 16, 0, 16);
257 }
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:109

Member Data Documentation

MonitorElement* TotemTimingDQMSource::GlobalPlots::digiSentPercentage = 0