CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Public Attributes
CTPPSCommonDQMSource::ArmPlots Struct Reference

plots related to one arm More...

Classes

struct  TimingRPPlots
 
struct  TrackingRPPlots
 

Public Member Functions

 ArmPlots ()
 
 ArmPlots (DQMStore::IBooker &ibooker, int _id, bool makeProtonRecoPlots)
 

Public Attributes

MonitorElementh_numRPWithTrack_bot = nullptr
 
MonitorElementh_numRPWithTrack_hor = nullptr
 
MonitorElementh_numRPWithTrack_top = nullptr
 
MonitorElementh_proton_t = nullptr
 
MonitorElementh_proton_th_x = nullptr
 
MonitorElementh_proton_th_y = nullptr
 
MonitorElementh_proton_time = nullptr
 
MonitorElementh_proton_xi = nullptr
 
MonitorElementh_trackCorr = nullptr
 
MonitorElementh_trackCorr_overlap = nullptr
 
int id
 
std::map< unsigned int, TimingRPPlotstimingRPPlots
 
std::map< unsigned int, TrackingRPPlotstrackingRPPlots
 

Detailed Description

plots related to one arm

Definition at line 77 of file CTPPSCommonDQMSource.cc.

Constructor & Destructor Documentation

◆ ArmPlots() [1/2]

CTPPSCommonDQMSource::ArmPlots::ArmPlots ( )
inline

Definition at line 98 of file CTPPSCommonDQMSource.cc.

◆ ArmPlots() [2/2]

CTPPSCommonDQMSource::ArmPlots::ArmPlots ( DQMStore::IBooker ibooker,
int  _id,
bool  makeProtonRecoPlots 
)

Definition at line 200 of file CTPPSCommonDQMSource.cc.

201  : id(_id) {
202  string name;
204 
205  ibooker.setCurrentFolder("CTPPS/common/sector " + name);
206 
207  string title = "ctpps_common_sector_" + name;
208 
210  ibooker.book1D("number of top RPs with tracks", title + ";number of top RPs with tracks", 5, -0.5, 4.5);
212  ibooker.book1D("number of hor RPs with tracks", title + ";number of hor RPs with tracks", 5, -0.5, 4.5);
214  ibooker.book1D("number of bot RPs with tracks", title + ";number of bot RPs with tracks", 5, -0.5, 4.5);
215 
216  h_trackCorr = ibooker.book2D("track correlation", title, 7, -0.5, 6.5, 7, -0.5, 6.5);
217  TH2F *h_trackCorr_h = h_trackCorr->getTH2F();
218  TAxis *xa = h_trackCorr_h->GetXaxis(), *ya = h_trackCorr_h->GetYaxis();
219  xa->SetBinLabel(1, "210, far, hor");
220  ya->SetBinLabel(1, "210, far, hor");
221  xa->SetBinLabel(2, "210, far, top");
222  ya->SetBinLabel(2, "210, far, top");
223  xa->SetBinLabel(3, "210, far, bot");
224  ya->SetBinLabel(3, "210, far, bot");
225  xa->SetBinLabel(4, "220, cyl");
226  ya->SetBinLabel(4, "220, cyl");
227  xa->SetBinLabel(5, "220, far, hor");
228  ya->SetBinLabel(5, "220, far, hor");
229  xa->SetBinLabel(6, "220, far, top");
230  ya->SetBinLabel(6, "220, far, top");
231  xa->SetBinLabel(7, "220, far, bot");
232  ya->SetBinLabel(7, "220, far, bot");
233 
234  h_trackCorr_overlap = ibooker.book2D("track correlation hor-vert overlaps", title, 7, -0.5, 6.5, 7, -0.5, 6.5);
235  h_trackCorr_h = h_trackCorr_overlap->getTH2F();
236  xa = h_trackCorr_h->GetXaxis();
237  ya = h_trackCorr_h->GetYaxis();
238  xa->SetBinLabel(1, "210, far, hor");
239  ya->SetBinLabel(1, "210, far, hor");
240  xa->SetBinLabel(2, "210, far, top");
241  ya->SetBinLabel(2, "210, far, top");
242  xa->SetBinLabel(3, "210, far, bot");
243  ya->SetBinLabel(3, "210, far, bot");
244  xa->SetBinLabel(4, "220, cyl");
245  ya->SetBinLabel(4, "220, cyl");
246  xa->SetBinLabel(5, "220, far, hor");
247  ya->SetBinLabel(5, "220, far, hor");
248  xa->SetBinLabel(6, "220, far, top");
249  ya->SetBinLabel(6, "220, far, top");
250  xa->SetBinLabel(7, "220, far, bot");
251  ya->SetBinLabel(7, "220, far, bot");
252 
253  if (makeProtonRecoPlots) {
254  h_proton_xi = ibooker.book1D("proton xi", title + ";xi", 100, 0., 0.3);
255  h_proton_th_x = ibooker.book1D("proton theta st x", ";#theta^{*}_{x} (rad)", 250, -500E-6, +500E-6);
256  h_proton_th_y = ibooker.book1D("proton theta st y", ";#theta^{*}_{y} (rad)", 250, -500E-6, +500E-6);
257  h_proton_t = ibooker.book1D("proton t", title + ";|t| GeV^{2}", 100, 0., 5.);
258  h_proton_time = ibooker.book1D("proton time", title + ";time (ns)", 100, -1., 1.);
259  }
260 
261  for (const unsigned int rpDecId : {2, 3, 16, 23}) {
262  unsigned int st = rpDecId / 10, rp = rpDecId % 10, rpFullDecId = id * 100 + rpDecId;
264  string stName, rpName;
265  rpId.stationName(stName, CTPPSDetId::nShort);
266  rpId.rpName(rpName, CTPPSDetId::nShort);
267  rpName = stName + "_" + rpName;
268 
269  if (rp == 6) {
270  timingRPPlots[rpFullDecId] = {
271  ibooker.book1D(rpName + " - track x histogram", title + "/" + rpName + ";track x (mm)", 200, 0., 40.),
272  ibooker.book1D(
273  rpName + " - track time histogram", title + "/" + rpName + ";track time (ns)", 100, -25., +50.)};
274  } else {
275  trackingRPPlots[rpFullDecId] = {
276  ibooker.book1D(rpName + " - track x histogram", title + "/" + rpName + ";track x (mm)", 200, 0., 40.),
277  ibooker.book1D(rpName + " - track y histogram", title + "/" + rpName + ";track y (mm)", 200, -20., +20.)};
278  }
279  }

References CTPPSDetId::armName(), dqm::implementation::IBooker::book1D(), dqm::implementation::IBooker::book2D(), dqm::impl::MonitorElement::getTH2F(), h_numRPWithTrack_bot, h_numRPWithTrack_hor, h_numRPWithTrack_top, h_proton_t, h_proton_th_x, h_proton_th_y, h_proton_time, h_proton_xi, h_trackCorr, h_trackCorr_overlap, ctppsCommonDQMSource_cfi::makeProtonRecoPlots, Skims_PA_cff::name, CTPPSDetId::nShort, year_2016_postTS2_cff::rpId, CTPPSDetId::sdTrackingStrip, dqm::implementation::NavigatorBase::setCurrentFolder(), timingRPPlots, runGCPTkAlMap::title, and trackingRPPlots.

Member Data Documentation

◆ h_numRPWithTrack_bot

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_bot = nullptr

Definition at line 80 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_numRPWithTrack_hor

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_hor = nullptr

Definition at line 80 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_numRPWithTrack_top

MonitorElement* CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_top = nullptr

Definition at line 80 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_t

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_t = nullptr

Definition at line 83 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_th_x

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_th_x = nullptr

Definition at line 83 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_th_y

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_th_y = nullptr

Definition at line 83 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_time

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_time = nullptr

Definition at line 84 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_xi

MonitorElement* CTPPSCommonDQMSource::ArmPlots::h_proton_xi = nullptr

Definition at line 83 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_trackCorr

MonitorElement* CTPPSCommonDQMSource::ArmPlots::h_trackCorr = nullptr

Definition at line 81 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_trackCorr_overlap

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_trackCorr_overlap = nullptr

Definition at line 81 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ id

int CTPPSCommonDQMSource::ArmPlots::id

Definition at line 78 of file CTPPSCommonDQMSource.cc.

◆ timingRPPlots

std::map<unsigned int, TimingRPPlots> CTPPSCommonDQMSource::ArmPlots::timingRPPlots

Definition at line 96 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ trackingRPPlots

std::map<unsigned int, TrackingRPPlots> CTPPSCommonDQMSource::ArmPlots::trackingRPPlots

Definition at line 90 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

ctppsCommonDQMSource_cfi.makeProtonRecoPlots
makeProtonRecoPlots
Definition: ctppsCommonDQMSource_cfi.py:10
CTPPSCommonDQMSource::ArmPlots::h_proton_xi
MonitorElement * h_proton_xi
Definition: CTPPSCommonDQMSource.cc:83
runGCPTkAlMap.title
string title
Definition: runGCPTkAlMap.py:94
CTPPSCommonDQMSource::ArmPlots::h_proton_time
MonitorElement * h_proton_time
Definition: CTPPSCommonDQMSource.cc:84
CTPPSCommonDQMSource::ArmPlots::trackingRPPlots
std::map< unsigned int, TrackingRPPlots > trackingRPPlots
Definition: CTPPSCommonDQMSource.cc:90
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
CTPPSCommonDQMSource::ArmPlots::h_proton_th_y
MonitorElement * h_proton_th_y
Definition: CTPPSCommonDQMSource.cc:83
CTPPSDetId::nShort
Definition: CTPPSDetId.h:87
year_2016_postTS2_cff.rpId
rpId
Definition: year_2016_postTS2_cff.py:23
CTPPSDetId::sdTrackingStrip
Definition: CTPPSDetId.h:44
dqm::impl::MonitorElement::getTH2F
virtual TH2F * getTH2F()
Definition: MonitorElement.cc:992
CTPPSCommonDQMSource::ArmPlots::h_trackCorr_overlap
MonitorElement * h_trackCorr_overlap
Definition: CTPPSCommonDQMSource.cc:81
CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_bot
MonitorElement * h_numRPWithTrack_bot
Definition: CTPPSCommonDQMSource.cc:80
CTPPSCommonDQMSource::ArmPlots::h_proton_t
MonitorElement * h_proton_t
Definition: CTPPSCommonDQMSource.cc:83
CTPPSCommonDQMSource::ArmPlots::h_proton_th_x
MonitorElement * h_proton_th_x
Definition: CTPPSCommonDQMSource.cc:83
CTPPSDetId
Base class for CTPPS detector IDs.
Definition: CTPPSDetId.h:31
CTPPSCommonDQMSource::ArmPlots::h_trackCorr
MonitorElement * h_trackCorr
Definition: CTPPSCommonDQMSource.cc:81
CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_hor
MonitorElement * h_numRPWithTrack_hor
Definition: CTPPSCommonDQMSource.cc:80
dqm::implementation::IBooker::book2D
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:177
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
CTPPSCommonDQMSource::ArmPlots::id
int id
Definition: CTPPSCommonDQMSource.cc:78
dqm::implementation::IBooker::book1D
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
CTPPSCommonDQMSource::ArmPlots::timingRPPlots
std::map< unsigned int, TimingRPPlots > timingRPPlots
Definition: CTPPSCommonDQMSource.cc:96
CTPPSDetId::armName
void armName(std::string &name, NameFlag flag=nFull) const
Definition: CTPPSDetId.h:96
CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_top
MonitorElement * h_numRPWithTrack_top
Definition: CTPPSCommonDQMSource.cc:80