CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
TotemRPDQMSource::PlanePlots Struct Reference

plots related to one RP plane More...

Public Member Functions

 PlanePlots ()
 
 PlanePlots (DQMStore::IBooker &ibooker, unsigned int id)
 

Public Attributes

MonitorElementcluster_profile_cumulative = NULL
 
MonitorElementcluster_size = NULL
 
MonitorElementdigi_profile_cumulative = NULL
 
MonitorElementefficiency_den = NULL
 
MonitorElementefficiency_num = NULL
 
MonitorElementhit_multiplicity = NULL
 

Detailed Description

plots related to one RP plane

Definition at line 135 of file TotemRPDQMSource.cc.

Constructor & Destructor Documentation

TotemRPDQMSource::PlanePlots::PlanePlots ( )
inline

Definition at line 143 of file TotemRPDQMSource.cc.

143 {}
TotemRPDQMSource::PlanePlots::PlanePlots ( DQMStore::IBooker ibooker,
unsigned int  id 
)

Definition at line 305 of file TotemRPDQMSource.cc.

References DQMStore::IBooker::book1D(), CTPPSDetId::nFull, CTPPSDetId::nPath, callgraph::path, TotemRPDetId::planeName(), DQMStore::IBooker::setCurrentFolder(), and fftjetcommon_cfi::title.

306 {
307  string path;
309  ibooker.setCurrentFolder(path);
310 
311  string title;
313 
314  digi_profile_cumulative = ibooker.book1D("digi profile", title+";strip number", 512, -0.5, 511.5);
315  cluster_profile_cumulative = ibooker.book1D("cluster profile", title+";cluster center", 1024, -0.25, 511.75);
316  hit_multiplicity = ibooker.book1D("hit multiplicity", title+";hits/detector/event", 6, -0.5, 5.5);
317  cluster_size = ibooker.book1D("cluster size", title+";hits per cluster", 5, 0.5, 5.5);
318 
319  efficiency_num = ibooker.book1D("efficiency num", title+";track position (mm)", 30, -15., 0.);
320  efficiency_den = ibooker.book1D("efficiency den", title+";track position (mm)", 30, -15., 0.);
321 }
Detector ID class for TOTEM Si strip detectors.
Definition: TotemRPDetId.h:30
MonitorElement * cluster_profile_cumulative
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:277
void planeName(std::string &name, NameFlag flag=nFull) const
Definition: TotemRPDetId.h:105
MonitorElement * digi_profile_cumulative

Member Data Documentation

MonitorElement* TotemRPDQMSource::PlanePlots::cluster_profile_cumulative = NULL

Definition at line 138 of file TotemRPDQMSource.cc.

MonitorElement* TotemRPDQMSource::PlanePlots::cluster_size = NULL

Definition at line 140 of file TotemRPDQMSource.cc.

MonitorElement* TotemRPDQMSource::PlanePlots::digi_profile_cumulative = NULL

Definition at line 137 of file TotemRPDQMSource.cc.

MonitorElement * TotemRPDQMSource::PlanePlots::efficiency_den = NULL

Definition at line 141 of file TotemRPDQMSource.cc.

MonitorElement* TotemRPDQMSource::PlanePlots::efficiency_num = NULL

Definition at line 141 of file TotemRPDQMSource.cc.

MonitorElement* TotemRPDQMSource::PlanePlots::hit_multiplicity = NULL

Definition at line 139 of file TotemRPDQMSource.cc.