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 78 of file CTPPSCommonDQMSource.cc.

Constructor & Destructor Documentation

◆ ArmPlots() [1/2]

CTPPSCommonDQMSource::ArmPlots::ArmPlots ( )
inline

Definition at line 99 of file CTPPSCommonDQMSource.cc.

◆ ArmPlots() [2/2]

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

Definition at line 201 of file CTPPSCommonDQMSource.cc.

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

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, profile_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 81 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_numRPWithTrack_hor

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_hor = nullptr

Definition at line 81 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_numRPWithTrack_top

MonitorElement* CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_top = nullptr

Definition at line 81 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_t

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_t = nullptr

Definition at line 84 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_th_x

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_th_x = nullptr

Definition at line 84 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_th_y

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_th_y = nullptr

Definition at line 84 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_time

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_proton_time = nullptr

Definition at line 85 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_proton_xi

MonitorElement* CTPPSCommonDQMSource::ArmPlots::h_proton_xi = nullptr

Definition at line 84 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_trackCorr

MonitorElement* CTPPSCommonDQMSource::ArmPlots::h_trackCorr = nullptr

Definition at line 82 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ h_trackCorr_overlap

MonitorElement * CTPPSCommonDQMSource::ArmPlots::h_trackCorr_overlap = nullptr

Definition at line 82 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ id

int CTPPSCommonDQMSource::ArmPlots::id

Definition at line 79 of file CTPPSCommonDQMSource.cc.

◆ timingRPPlots

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

Definition at line 97 of file CTPPSCommonDQMSource.cc.

Referenced by ArmPlots().

◆ trackingRPPlots

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

Definition at line 91 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:84
runGCPTkAlMap.title
string title
Definition: runGCPTkAlMap.py:94
CTPPSCommonDQMSource::ArmPlots::h_proton_time
MonitorElement * h_proton_time
Definition: CTPPSCommonDQMSource.cc:85
CTPPSCommonDQMSource::ArmPlots::trackingRPPlots
std::map< unsigned int, TrackingRPPlots > trackingRPPlots
Definition: CTPPSCommonDQMSource.cc:91
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:84
CTPPSDetId::nShort
Definition: CTPPSDetId.h:87
CTPPSDetId::sdTrackingStrip
Definition: CTPPSDetId.h:44
dqm::impl::MonitorElement::getTH2F
virtual TH2F * getTH2F()
Definition: MonitorElement.cc:995
CTPPSCommonDQMSource::ArmPlots::h_trackCorr_overlap
MonitorElement * h_trackCorr_overlap
Definition: CTPPSCommonDQMSource.cc:82
CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_bot
MonitorElement * h_numRPWithTrack_bot
Definition: CTPPSCommonDQMSource.cc:81
CTPPSCommonDQMSource::ArmPlots::h_proton_t
MonitorElement * h_proton_t
Definition: CTPPSCommonDQMSource.cc:84
CTPPSCommonDQMSource::ArmPlots::h_proton_th_x
MonitorElement * h_proton_th_x
Definition: CTPPSCommonDQMSource.cc:84
CTPPSDetId
Base class for CTPPS detector IDs.
Definition: CTPPSDetId.h:31
CTPPSCommonDQMSource::ArmPlots::h_trackCorr
MonitorElement * h_trackCorr
Definition: CTPPSCommonDQMSource.cc:82
CTPPSCommonDQMSource::ArmPlots::h_numRPWithTrack_hor
MonitorElement * h_numRPWithTrack_hor
Definition: CTPPSCommonDQMSource.cc:81
profile_2016_postTS2_cff.rpId
rpId
Definition: profile_2016_postTS2_cff.py:21
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:79
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:97
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:81