CMS 3D CMS Logo

bigStructure.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 ##########################################################################
4 # Creates a histogram where the the names of the structures are present
5 # as humanreadable text.
6 
7 
8 import logging
9 
10 from ROOT import (TH1F, TCanvas, TGraph, TImage, TPaveLabel, TPaveText, TTree,
11  gROOT, gStyle)
12 
13 from Alignment.MillePedeAlignmentAlgorithm.mpsvalidate.classes import OutputData, PlotData
14 from Alignment.MillePedeAlignmentAlgorithm.mpsvalidate.geometry import Alignables, Structure
15 from Alignment.MillePedeAlignmentAlgorithm.mpsvalidate.style import identification
16 
17 
18 def plot(MillePedeUser, alignables, config):
19  logger = logging.getLogger("mpsvalidate")
20 
21  # more space for labels
22  gStyle.SetPadBottomMargin(0.25)
23  gStyle.SetOptStat("emrs")
24 
25  for mode in ["xyz", "rot"]:
26  big = PlotData(mode)
27 
28  # count number of needed bins and max shift
29  for line in MillePedeUser:
30  if (line.ObjId != 1):
31  for i in range(3):
32  if (abs(line.Par[big.data[i]]) != 999999):
33  if (mode == "xyz"):
34  line.Par[big.data[i]] *= 10000
35  big.numberOfBins[i] += 1
36  if (abs(line.Par[big.data[i]]) > abs(big.maxShift[i])):
37  big.maxShift[i] = line.Par[big.data[i]]
38 
39  # initialize histograms
40  for i in range(3):
41  big.histo.append(TH1F("Big Structure {0} {1}".format(big.xyz[i], mode), "", big.numberOfBins[i], 0, big.numberOfBins[i]))
42  if (big.unit!=""):
43  big.histo[i].SetYTitle("#Delta"+big.xyz[i]+" ["+big.unit+"]")
44  else:
45  big.histo[i].SetYTitle("#Delta"+big.xyz[i])
46  big.histo[i].SetStats(0)
47  big.histo[i].SetMarkerStyle(21)
48  big.histoAxis.append(big.histo[i].GetXaxis())
49  # bigger labels for the text
50  big.histoAxis[i].SetLabelSize(0.06)
51  big.histo[i].GetYaxis().SetTitleOffset(1.6)
52 
53  # add labels
54  big.title = TPaveLabel(
55  0.1, 0.8, 0.9, 0.9, "High Level Structures {0}".format(mode))
56  big.text = TPaveText(0.05, 0.1, 0.95, 0.75)
57  big.text.SetTextAlign(12)
58 
59  # error if shift is bigger than limit
60  limit = config.limit[mode]
61  for i in range(3):
62  if (big.unit!=""):
63  big.text.AddText("max. shift {0}: {1:.2} {2}".format(big.xyz[i], float(big.maxShift[i]), big.unit))
64  if (abs(big.maxShift[i]) > limit):
65  big.text.AddText("! {0} shift bigger than {1} {2}".format(big.xyz[i], limit, big.unit))
66  else:
67  big.text.AddText("max. shift {0}: {1:.2}".format(big.xyz[i], float(big.maxShift[i])))
68  if (abs(big.maxShift[i]) > limit):
69  big.text.AddText("! {0} shift bigger than {1}".format(big.xyz[i], limit))
70 
71  # fill histograms with value and name
72  for line in MillePedeUser:
73  if (line.ObjId != 1):
74  for i in range(3):
75  if (abs(line.Par[big.data[i]]) != 999999):
76  # set name of the structure
77  big.histoAxis[i].SetBinLabel(
78  big.binPosition[i], alignables.get_name_by_objid(line.ObjId))
79  # fill with data, big.data[i] xyz or rot data
80  # transform xyz data from cm to #mu m
81  if (mode == "xyz"):
82  big.histo[i].SetBinContent(
83  big.binPosition[i], 10000 * line.Par[big.data[i]])
84  else:
85  big.histo[i].SetBinContent(
86  big.binPosition[i], line.Par[big.data[i]])
87  big.binPosition[i] += 1
88 
89  # rotate labels
90  for i in range(3):
91  big.histoAxis[i].LabelsOption("v")
92 
93  # reset y range
94  # two types of ranges
95 
96  # 1. show all
97  if (config.rangemodeHL == "all"):
98  for i in range(3):
99  big.usedRange[i] = big.maxShift[i]
100 
101  # 2. use given values
102  if (config.rangemodeHL == "given"):
103  # loop over coordinates
104  for i in range(3):
105  if (mode == "xyz"):
106  valuelist = config.rangexyzHL
107  if (mode == "rot"):
108  valuelist = config.rangerotHL
109  # loop over given values
110  # without last value
111  for value in valuelist:
112  # maximum smaller than given value
113  if (abs(big.maxShift[i]) < value):
114  big.usedRange[i] = value
115  break
116  # if not possible, force highest
117  if (abs(big.maxShift[i]) > valuelist[-1]):
118  big.usedRange[i] = valuelist[-1]
119 
120  # all the same range
121  if (config.samerangeHL == 1):
122  # apply new range
123  for i in range(3):
124  big.usedRange[i] = max(map(abs, big.usedRange))
125 
126  # count outlieres
127  if (config.rangemodeHL == "given"):
128  for i in range(3):
129  for binNumber in range(1, big.numberOfBins[i] + 1):
130  if (abs(big.histo[i].GetBinContent(binNumber)) > big.usedRange[i]):
131  big.hiddenEntries[i] += 1
132 
133  # add number of outlieres to text
134  for i in range(3):
135  if (big.hiddenEntries[i] != 0):
136  big.text.AddText("! {0}: {1} outlier !".format(
137  big.xyz[i], int(big.hiddenEntries[i])))
138 
139  # create canvas
140  cBig = TCanvas("canvasBigStrucutres_{0}".format(
141  mode), "Parameter", 300, 0, 800, 600)
142  cBig.Divide(2, 2)
143 
144  # draw histograms
145  cBig.cd(1)
146  big.title.Draw()
147  big.text.Draw()
148 
149  # draw identification
150  ident = identification(config)
151  ident.Draw()
152 
153  # TGraph copy to hide outlier
154  copy = 3 * [None]
155 
156  # loop over coordinates
157  for i in range(3):
158  cBig.cd(i + 2)
159  # option "AXIS" to only draw the axis
160  big.histo[i].SetLineColor(0)
161  big.histo[i].Draw("AXIS")
162  # set new range
163  big.histo[i].GetYaxis().SetRangeUser(-1.1 *
164  abs(big.usedRange[i]), 1.1 * abs(big.usedRange[i]))
165 
166  # TGraph object to hide outlier
167  copy[i] = TGraph(big.histo[i])
168  # set the new range
169  copy[i].SetMaximum(1.1 * abs(big.usedRange[i]))
170  copy[i].SetMinimum(-1.1 * abs(big.usedRange[i]))
171  # draw the data
172  copy[i].Draw("PSAME")
173 
174  cBig.Update()
175 
176  # save as pdf
177  cBig.Print(
178  "{0}/plots/pdf/structures_{1}.pdf".format(config.outputPath, mode))
179 
180  # export as png
181  image = TImage.Create()
182  image.FromPad(cBig)
183  image.WriteImage(
184  "{0}/plots/png/structures_{1}.png".format(config.outputPath, mode))
185 
186  # add to output list
187  output = OutputData(plottype="big", parameter=mode,
188  filename="structures_{0}".format(mode))
189  config.outputList.append(output)
190 
191  # reset BottomMargin
192  gStyle.SetPadBottomMargin(0.1)
def plot(MillePedeUser, alignables, config)
Definition: bigStructure.py:18
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
def identification(config)
creates the identification text in the top left corner
Definition: style.py:16