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 108 of file TotemTimingDQMSource.cc.

Constructor & Destructor Documentation

TotemTimingDQMSource::GlobalPlots::GlobalPlots ( )
inline

Definition at line 112 of file TotemTimingDQMSource.cc.

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

Definition at line 243 of file TotemTimingDQMSource.cc.

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

244 {
245  ibooker.setCurrentFolder("CTPPS/TimingFastSilicon");
246 
247  digiSentPercentage = ibooker.book2D( "sent digis percentage",
248  "sent digis percentage (sampic);board + 0.5 sampic;channel",
249  14, -0.5, 6.5, 16, 0, 16);
250 }
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