38 ''' initialize: implementation'''
46 print(
"- global tag:", globalTag)
47 print(
"- time of measurement:",
48 time.strftime(
"%d %b %Y %H:%M:%S", time.localtime(db.getTimeStamp())),
"(mean), ",
49 round(db.getTimeStampStd() / 3600 / 24, 2),
"days (rms)")
51 canvas = TCanvas(
"c1",
"alpha ratio", 2000, 1500)
54 gStyle.SetTitleFontSize(0.18)
55 for slot
in range(1, 17):
57 pad = canvas.GetPad(slot)
58 pad.SetLeftMargin(0.02)
59 pad.SetRightMargin(0.02)
60 pad.SetTopMargin(0.17)
61 pad.SetBottomMargin(0.03)
62 h = db.getAlphaRatio(slot)
65 h.SetTitle(
"slot " + str(slot))
69 fileName =
'alphaRatio-' + time.strftime(
"%Y-%m-%d", time.localtime(db.getTimeStamp())) +
'.png'
70 canvas.SaveAs(fileName)
71 print(
"--> plot saved as:", fileName)