CMS 3D CMS Logo

SiStripTkMaps.cc
Go to the documentation of this file.
1 // CMSSW includes
9 
10 // ROOT includes
11 #include "TArrow.h"
12 #include "TPaletteAxis.h"
13 #include "TGaxis.h"
14 #include "TCanvas.h"
15 #include "TColor.h"
16 #include "TGraph.h"
17 #include "TLatex.h"
18 #include "TH2Poly.h"
19 #include "TStyle.h"
20 
21 // STL includes
22 #include <fstream>
23 #include <iostream>
24 #include <map>
25 #include <string>
26 #include <vector>
27 
28 // boost includes
29 #include <boost/tokenizer.hpp>
30 #include <boost/range/adaptor/indexed.hpp>
31 
33 
34 //============================================================================
35 void SiStripTkMaps::bookMap(const std::string mapTitle, const std::string zAxisTitle) {
36  double minx = 0xFFFFFF, maxx = -0xFFFFFF, miny = 0xFFFFFF, maxy = -0xFFFFFFF;
37  readVertices(minx, maxx, miny, maxy);
38 
39  // set the titles
40  m_zAxisTitle = zAxisTitle;
41  m_mapTitle = mapTitle;
42 
43  TGaxis::SetMaxDigits(2);
44 
45  // margin of the box
46  static constexpr int margin = 5;
47  m_trackerMap =
48  new TH2Poly("Tracker Map", m_mapTitle.c_str(), minx - margin, maxx + margin, miny - margin, maxy + margin);
49  m_trackerMap->SetFloat();
50  m_trackerMap->SetOption(m_option);
51  m_trackerMap->SetStats(false);
52  m_trackerMap->GetZaxis()->SetLabelSize(0.03);
53  m_trackerMap->GetZaxis()->SetTitleOffset(0.5);
54  m_trackerMap->GetZaxis()->SetTitleSize(0.05);
55  m_trackerMap->GetZaxis()->SetTitle(m_zAxisTitle.c_str());
56  m_trackerMap->GetZaxis()->CenterTitle();
57 
58  for (const auto& pair : m_bins) {
59  m_trackerMap->AddBin(pair.second->Clone());
60  }
61 }
62 
63 //============================================================================
64 void SiStripTkMaps::fill(long rawid, double val) {
65  m_trackerMap->Fill(TString::Format("%ld", rawid), val);
66  m_values.push_back(val);
67 }
68 
69 //============================================================================
71  // margins
72  static constexpr float tmargin_ = 0.08;
73  static constexpr float bmargin_ = 0.02;
74  static constexpr float lmargin_ = 0.02;
75  static constexpr float rmargin_ = 0.08;
76 
77  // window size
78  static constexpr int wH_ = 3000;
79  static constexpr int hH_ = 850;
80 
81  canvas.cd();
82  adjustCanvasMargins(canvas.cd(), tmargin_, bmargin_, lmargin_, rmargin_);
83  canvas.Update();
84 
85  m_trackerMap->SetTitle("");
86  if (!option.empty()) {
87  m_trackerMap->Draw(option.c_str());
88  } else {
89  m_trackerMap->Draw();
90  }
91 
92  canvas.SetFrameLineColor(0);
93  gPad->Update();
94  TPaletteAxis* palette = (TPaletteAxis*)m_trackerMap->GetListOfFunctions()->FindObject("palette");
95  if (palette != nullptr) {
96  palette->SetLabelSize(0.02);
97  palette->SetX1NDC(1 - rmargin_);
98  palette->SetX2NDC(1 - rmargin_ + lmargin_);
99  }
100 
101  // if not right size, and not drawn in same mode
102  if (canvas.GetWindowHeight() != hH_ && canvas.GetWindowWidth() != wH_ && option.find("same") == std::string::npos) {
103  canvas.SetWindowSize(wH_, hH_);
104  }
105 
106  // call the map dressing
107  dressMap(canvas);
108 }
109 
110 //============================================================================
111 void SiStripTkMaps::dressMap(TCanvas& canv) {
112  std::array<std::string, 12> barrelNames = {
113  {"TIB L2", "TIB L1", "TIB L4", "TIB L3", "TOB L2", "TOB L1", "TOB L4", " TOB L3", "TOB L6", "TOB L5"}};
114  std::array<std::string, 4> endcapNames = {{"TID", "TEC", "TID", "TEC"}};
115  std::array<std::string, 24> disknumbering = {{"+1", "+2", "+3", "+1", "+2", "+3", "+4", "+5",
116  "+6", "+7", "+8", "+9", "-1", "-2", "-3", "-1",
117  "-2", "-3", "-4", "-5", "-6", "-7", "-8", "-9"}};
118 
119  static constexpr std::array<float, 12> b_coordx = {
120  {0.1, 0.1, 0.26, 0.26, 0.41, 0.41, 0.56, 0.56, 0.725, 0.725, 0.05, 0.17}};
121  static constexpr std::array<float, 12> b_coordy = {
122  {0.70, 0.45, 0.70, 0.45, 0.70, 0.46, 0.70, 0.46, 0.70, 0.46, 0.85, 0.85}};
123 
124  static constexpr std::array<float, 4> e_coordx = {{0.01, 0.21, 0.01, 0.21}};
125  static constexpr std::array<float, 4> e_coordy = {{0.89, 0.89, 0.17, 0.17}};
126 
127  static constexpr std::array<float, 24> n_coordx = {{0.01, 0.087, 0.165, 0.227, 0.305, 0.383, 0.461, 0.539,
128  0.616, 0.694, 0.772, 0.850, 0.01, 0.087, 0.165, 0.227,
129  0.305, 0.383, 0.461, 0.539, 0.617, 0.695, 0.773, 0.851}};
130 
131  static constexpr std::array<float, 24> n_coordy = {{0.85, 0.85, 0.85, 0.85, 0.85, 0.85, 0.85, 0.85,
132  0.85, 0.85, 0.85, 0.85, 0.13, 0.13, 0.13, 0.13,
133  0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13}};
134 
135  canv.cd();
136  for (const auto& name : barrelNames | boost::adaptors::indexed(0)) {
137  auto ltx = TLatex();
138  ltx.SetTextFont(62);
139  ltx.SetTextSize(0.035);
140  ltx.SetTextAlign(11);
141  ltx.DrawLatexNDC(b_coordx[name.index()], b_coordy[name.index()], name.value().c_str());
142  }
143 
144  for (const auto& name : endcapNames | boost::adaptors::indexed(0)) {
145  auto ltx = TLatex();
146  ltx.SetTextFont(62);
147  ltx.SetTextSize(0.05);
148  ltx.SetTextAlign(11);
149  ltx.DrawLatexNDC(e_coordx[name.index()], e_coordy[name.index()], name.value().c_str());
150  }
151 
152  for (const auto& name : disknumbering | boost::adaptors::indexed(0)) {
153  auto ltx = TLatex();
154  ltx.SetTextFont(62);
155  ltx.SetTextSize(0.035);
156  ltx.SetTextAlign(11);
157  ltx.DrawLatexNDC(n_coordx[name.index()], n_coordy[name.index()], name.value().c_str());
158  }
159 
160  auto ltx = TLatex();
161  ltx.SetTextFont(62);
162  ltx.SetTextSize(0.045);
163  ltx.SetTextAlign(11);
164  ltx.DrawLatexNDC(gPad->GetLeftMargin(), 1 - gPad->GetTopMargin() + 0.03, m_mapTitle.c_str());
165 
166  // barrel axes
167  drawArrows(0.09, 0.23, 0.24, 0.45, "#phi", "z");
168  // endcap axes
169  drawArrows(0.85, 0.89, 0.83, 0.95, "x", "y");
170 
171  canv.Modified();
172  canv.Update(); // make sure it's really (re)drawn
173 }
174 
175 //============================================================================
177  const float x_X1, const float x_X2, const float x_Y1, const float y_Y2, const char* x_label, const char* y_label) {
178  auto arrow_X = TArrow();
179  arrow_X.SetLineColor(kBlue);
180  arrow_X.SetLineWidth(2);
181  arrow_X.SetOption("|>");
182  arrow_X.SetArrowSize(10);
183  arrow_X.DrawLineNDC(x_X1, x_Y1, x_X2, x_Y1);
184 
185  auto arrow_Y = TArrow();
186  arrow_Y.SetLineColor(kBlue);
187  arrow_Y.SetLineWidth(2);
188  arrow_Y.SetOption("|>");
189  arrow_Y.SetArrowSize(10);
190  arrow_Y.DrawLineNDC(x_X2, x_Y1, x_X2, y_Y2);
191 
192  auto text_X = TLatex();
193  text_X.SetTextSize(0.04);
194  text_X.SetTextAlign(11);
195  text_X.SetTextColor(kBlue);
196  text_X.DrawLatexNDC(x_X1, x_Y1 - 0.03, x_label);
197 
198  auto text_Y = TLatex();
199  text_Y.SetTextSize(0.04);
200  text_Y.SetTextAlign(11);
201  text_Y.SetTextColor(kBlue);
202  text_Y.DrawLatexNDC(x_X2 + 0.005, y_Y2 - 0.01, y_label);
203 }
204 
205 //============================================================================
207  TVirtualPad* pad, const float top, const float bottom, const float left, const float right) {
208  if (top > 0) {
209  pad->SetTopMargin(top);
210  }
211  if (bottom > 0) {
212  pad->SetBottomMargin(bottom);
213  }
214  if (left > 0) {
215  pad->SetLeftMargin(left);
216  }
217  if (right > 0) {
218  pad->SetRightMargin(right);
219  }
220 }
221 
222 //============================================================================
223 void SiStripTkMaps::readVertices(double& minx, double& maxx, double& miny, double& maxy) {
224  std::ifstream in;
225 
226  // TPolyline vertices stored at https://github.com/cms-data/DQM-SiStripMonitorClient
227  in.open(edm::FileInPath("DQM/SiStripMonitorClient/data/Geometry/tracker_map_bare").fullPath().c_str());
228 
229  if (!in.good()) {
230  throw cms::Exception("FileError") << "SiStripTkMaps: problem opening vertices file!!" << std::endl;
231  return;
232  }
233 
234  while (in.good()) {
235  long detid = 0;
236  double x[5], y[5];
237 
239  std::getline(in, line);
240  typedef boost::tokenizer<boost::char_separator<char>> tokenizer;
241  boost::char_separator<char> sep{" "};
242  tokenizer tok{line, sep};
243 
244  int ix{0}, iy{0};
245  bool isPixel{false};
246  for (const auto& t : tok | boost::adaptors::indexed(0)) {
247  int i = t.index();
248  if (i == 0) {
249  detid = atoll((t.value()).c_str());
250 
251  // Drop Pixel Data
252  DetId detId(detid);
253  if (detId.subdetId() == PixelSubdetector::PixelBarrel || detId.subdetId() == PixelSubdetector::PixelEndcap) {
254  isPixel = true;
255  break;
256  }
257  } else {
258  if (i % 2 == 0) {
259  x[ix] = atof((t.value()).c_str());
260  if (x[ix] < minx) {
261  minx = x[ix];
262  }
263  if (x[ix] > maxx) {
264  maxx = x[ix];
265  }
266  ++ix;
267  } else {
268  y[iy] = atof((t.value()).c_str());
269  if (y[iy] < miny) {
270  miny = y[iy];
271  }
272  if (y[iy] > maxy) {
273  maxy = y[iy];
274  }
275  ++iy;
276  } // else
277  } // else
278  } // loop on entries
279 
280  if (isPixel) {
281  continue;
282  }
283 
284  m_bins[detid] = std::make_shared<TGraph>(ix, x, y);
285  m_bins[detid]->SetName(TString::Format("%ld", detid));
286  m_bins[detid]->SetTitle(TString::Format("Module ID=%ld", detid));
287  m_detIdVector.push_back(detid);
288  }
289 }
void readVertices(double &minx, double &maxx, double &miny, double &maxy)
Option_t * m_option
Definition: SiStripTkMaps.h:73
void bookMap(const std::string mapTitle, const std::string zAxisTitle)
void dressMap(TCanvas &canv)
void drawArrows(const float x_X1, const float x_X2, const float x_Y1, const float y_Y2, const char *x_label, const char *y_label)
std::string m_zAxisTitle
Definition: SiStripTkMaps.h:75
void adjustCanvasMargins(TVirtualPad *pad, const float top, const float bottom, const float left, const float right)
Double_t margin
std::string m_mapTitle
Definition: SiStripTkMaps.h:74
Definition: DetId.h:17
std::vector< unsigned int > m_detIdVector
Definition: SiStripTkMaps.h:78
void fill(long rawid, double val)
std::vector< double > m_values
Definition: SiStripTkMaps.h:79
bool isPixel(HitType hitType)
def canvas(sub, attr)
Definition: svgfig.py:482
void drawMap(TCanvas &canvas, std::string option="")
TH2Poly * m_trackerMap
Definition: SiStripTkMaps.h:81
std::map< long, std::shared_ptr< TGraph > > m_bins
Definition: SiStripTkMaps.h:77