CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackingMaterialPlotter.cc
Go to the documentation of this file.
1 #include <iostream>
2 
3 #include <TROOT.h>
4 #include <TObjArray.h>
5 #include <TColor.h>
6 #include <TStyle.h>
7 #include <TCanvas.h>
8 #include <TFrame.h>
9 #include "XHistogram.h"
11 
13 
15 {
16  m_color.push_back(kBlack); // unassigned
17  m_color.push_back(kAzure); // PixelBarrel
18  m_color.push_back(kAzure + 1) ; //
19  m_color.push_back(kAzure + 1) ; //
20  m_color.push_back(kAzure + 3) ; //
21  m_color.push_back(kAzure + 3) ; //
22  m_color.push_back(kGreen); // TIB
23  m_color.push_back(kGreen); //
24  m_color.push_back(kGreen + 2); //
25  m_color.push_back(kGreen + 2); //
26  m_color.push_back(kGreen - 3); //
27  m_color.push_back(kGreen - 3); //
28  m_color.push_back(kGreen - 1); //
29  m_color.push_back(kGreen - 1); //
30  m_color.push_back(kRed); // TOB
31  m_color.push_back(kRed); //
32  m_color.push_back(kRed); //
33  m_color.push_back(kRed + 3); //
34  m_color.push_back(kRed + 3); //
35  m_color.push_back(kRed + 3); //
36  m_color.push_back(kRed - 3); //
37  m_color.push_back(kRed - 3); //
38  m_color.push_back(kRed - 3); //
39  m_color.push_back(kOrange + 9); //
40  m_color.push_back(kOrange + 9); //
41  m_color.push_back(kOrange + 9); //
42  m_color.push_back(kOrange + 7); //
43  m_color.push_back(kOrange + 7); //
44  m_color.push_back(kOrange + 7); //
45  m_color.push_back(kOrange + 5); //
46  m_color.push_back(kOrange + 5); //
47  m_color.push_back(kOrange + 5); //
48  m_color.push_back(kOrange + 8); // PixelEndcap Z-
49  m_color.push_back(kOrange + 10); //
50  m_color.push_back(kOrange - 3); //
51  m_color.push_back(kOrange - 1); // PixelEndcap Z+
52  m_color.push_back(kOrange - 8); //
53  m_color.push_back(kYellow); // TID Z-
54  m_color.push_back(kYellow); //
55  m_color.push_back(kYellow + 2); //
56  m_color.push_back(kYellow + 2); //
57  m_color.push_back(kYellow + 2); //
58  m_color.push_back(kYellow + 3); //
59  m_color.push_back(kMagenta); //
60  m_color.push_back(kMagenta); //
61  m_color.push_back(kMagenta); //
62  m_color.push_back(kMagenta); //
63  m_color.push_back(kMagenta); //
64  m_color.push_back(kMagenta + 1); //
65  m_color.push_back(kMagenta + 2); //
66  m_color.push_back(kMagenta + 3); //
67  m_color.push_back(kMagenta + 4); //
68  m_color.push_back(kMagenta + 5); //
69  m_color.push_back(kMagenta + 6); //
70  m_color.push_back(kMagenta + 7); //
71  m_color.push_back(kMagenta + 8); //
72 }
73 
74 
75 unsigned int TrackingMaterialPlotter::fill_gradient(const TColor & first, const TColor & last, unsigned int steps /*= 100*/, unsigned int index /* = 0*/)
76 {
77  if (index == 0) {
78  // if no index was given, find the highest used one and start from that plus one
79  index = ((TObjArray*) gROOT->GetListOfColors())->GetLast() + 1;
80  }
81 
82  float r1, g1, b1, r2, g2, b2;
83  first.GetRGB(r1, g1, b1);
84  last.GetRGB(r2, g2, b2);
85  float delta_r = (r2 - r1) / (steps - 1);
86  float delta_g = (g2 - g1) / (steps - 1);
87  float delta_b = (b2 - b1) / (steps - 1);
88 
89  m_gradient.resize(steps);
90  for (unsigned int i = 0; i < steps; ++i) {
91  new TColor(static_cast<Int_t>(index + i), r1 + delta_r * i, g1 + delta_g * i, b1 + delta_b * i);
92  m_gradient[i] = index + i;
93  }
94 
95  return index;
96 }
97 
98 unsigned int TrackingMaterialPlotter::fill_gradient(unsigned int first, unsigned int last, unsigned int steps /*= 100*/, unsigned int index /* = 0*/)
99 {
100  return fill_gradient(* (TColor *) gROOT->GetListOfColors()->At(first), * (TColor *) gROOT->GetListOfColors()->At(last), steps, index);
101 }
102 
104 {
105  const float rzMinZ = -maxZ;
106  const float rzMaxZ = maxZ;
107  const float rzMinR = 0.;
108  const float rzMaxR = maxR;
109  const int rzBinsZ = (int) (2. * maxZ * resolution);
110  const int rzBinsR = (int) ( maxR * resolution);
111 
112  std::vector<double> max;
113  max.push_back( 0.02 );
114  max.push_back( 0.00004 );
115  m_tracker = XHistogram( 2, rzBinsZ, rzBinsR, std::make_pair(rzMinZ, rzMaxZ), std::make_pair(rzMinR, rzMaxR), m_color.size(), max);
116 
117  TColor::InitializeColors();
118  fill_color();
119  fill_gradient( kWhite, kBlack, 100); // 100-steps gradient from white to black
120 }
121 
123 {
124  std::vector<double> w(2);
125  w[0] = step.radiationLengths();
126  w[1] = step.energyLoss();
127  m_tracker.fill( std::make_pair(step.in().z(), step.out().z()),
128  std::make_pair(step.in().perp(), step.out().perp()),
129  w, step.length(), 1 ); // 0 is empty, 1 is unassigned
130 }
131 
133 {
134  std::vector<double> w(2);
135  w[0] = step.radiationLengths();
136  w[1] = step.energyLoss();
137  m_tracker.fill( std::make_pair(step.in().z(), step.out().z()),
138  std::make_pair(step.in().perp(), step.out().perp()),
139  w, step.length(), layer+1 ); // layer is 1-based, but plot uses: 0 is empty, 1 is unassigned
140 }
141 
142 
144 {
145  const double scale = 10.;
146  TCanvas* canvas;
147 
148  XHistogram::Histogram* radlen = m_tracker.get(0);
149  canvas = new TCanvas("radlen_rz", "RadiationLengths - RZ view", (int) (600 * scale * 1.25), (int) (120 * scale * 1.50));
150  gStyle->SetOptStat(0);
151  gStyle->SetPalette( m_gradient.size(), & m_gradient.front() );
152  gStyle->SetNumberContours( m_gradient.size() );
153  canvas->GetFrame()->SetFillColor(kWhite);
154  radlen->Draw("colz");
155  radlen->Draw("same axis y+");
156  radlen->SaveAs("radlen.root");
157  canvas->SaveAs("radlen.png");
158  delete canvas;
159 
161  canvas = new TCanvas("dedx_rz", "-dE/dx term - RZ view", (int) (600 * scale * 1.25), (int) (120 * scale * 1.50));
162  canvas->GetFrame()->SetFillColor(kWhite);
163  gStyle->SetOptStat(0);
164  gStyle->SetPalette( m_gradient.size(), & m_gradient.front() );
165  gStyle->SetNumberContours( m_gradient.size() );
166  dedx->Draw("colz");
167  dedx->Draw("same axis y+");
168  dedx->SaveAs("dedx.root");
169  canvas->SaveAs("dedx.png");
170  delete canvas;
171 
173  canvas = new TCanvas("layer_rz", "Layers - RZ view", (int) (600 * scale * 1.25), (int) (120 * scale * 1.50));
174  canvas->GetFrame()->SetFillColor(kWhite);
175  gStyle->SetOptStat(0);
176  gStyle->SetPalette( m_color.size(), & m_color.front() );
177  gStyle->SetNumberContours( m_color.size() );
178  colormap->SetMinimum( 1 );
179  colormap->SetMaximum( m_color.size() );
180  colormap->Draw("col");
181  colormap->Draw("same axis y+");
182  colormap->SaveAs("layers.root");
183  canvas->SaveAs("layers.png");
184  delete canvas;
185 }
186 
void plotSegmentUnassigned(const MaterialAccountingStep &step)
int i
Definition: DBlmapReader.cc:9
ColorMap * colormap(void) const
access the colormap
Definition: XHistogram.h:104
T perp() const
Definition: PV3DBase.h:72
const double w
Definition: UKUtility.cc:23
TH2F Histogram
Definition: XHistogram.h:17
double length(void) const
double radiationLengths(void) const
Histogram * get(size_t h=0) const
access one of the histograms
Definition: XHistogram.h:89
double energyLoss(void) const
def canvas
Definition: svgfig.py:481
TrackingMaterialPlotter(float maxZ, float maxR, float resolution)
T z() const
Definition: PV3DBase.h:64
double delta_r(const Fourvec &a, const Fourvec &b)
Find the distance between two four-vectors in the two-dimensional space .
Definition: fourvec.cc:249
unsigned int fill_gradient(const TColor &first, const TColor &last, unsigned int steps=100, unsigned int index=0)
const GlobalPoint & out(void) const
TH2I ColorMap
Definition: XHistogram.h:16
void plotSegmentInLayer(const MaterialAccountingStep &step, int layer)
void fill(double x, double y, const std::vector< double > &weight, double norm)
fill one point
Definition: XHistogram.cc:71
const GlobalPoint & in(void) const