CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
bigStructure Namespace Reference

Functions

def plot
 

Function Documentation

def bigStructure.plot (   MillePedeUser,
  alignables,
  config 
)

Definition at line 18 of file bigStructure.py.

References funct.abs(), style.identification(), and bookConverter.max.

Referenced by mps_validate.main().

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