ATLAS Offline Software
Loading...
Searching...
No Matches
LArHVCorrMonAlg Namespace Reference

Functions

 LArHVCorrMonConfig (flags)
 LArHVCorrMonConfigCore (helper, algoinstance, flags)

Variables

 flags = initConfigFlags()
str nightly = '/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/CommonInputs/'
str file = 'data16_13TeV.00311321.physics_Main.recon.AOD.r9264/AOD.11038520._000001.pool.root.1'
 Files
 isMC
 HISTFileName
 cfg = MainServicesCfg(flags)
int Nevents = 10

Function Documentation

◆ LArHVCorrMonConfig()

LArHVCorrMonAlg.LArHVCorrMonConfig ( flags)

Definition at line 5 of file LArHVCorrMonAlg.py.

5def LArHVCorrMonConfig(flags):
6 from AthenaMonitoring import AthMonitorCfgHelper
7 helper = AthMonitorCfgHelper(flags,'LArHVCorrMonAlgCfg')
8
9 from LArGeoAlgsNV.LArGMConfig import LArGMCfg
10 acc = LArGMCfg(flags)
11 from TileGeoModel.TileGMConfig import TileGMCfg
12 acc.merge(TileGMCfg(flags))
13 from LArCalibUtils.LArHVScaleConfig import LArHVScaleCfg
14 acc.merge(LArHVScaleCfg(flags))
15
16 from AthenaConfiguration.ComponentFactory import CompFactory
17 LArHVCorrMonConfigCore(helper, CompFactory.LArHVCorrectionMonAlg, flags)
18
19 acc.merge(helper.result())
20 return acc
21

◆ LArHVCorrMonConfigCore()

LArHVCorrMonAlg.LArHVCorrMonConfigCore ( helper,
algoinstance,
flags )

Definition at line 22 of file LArHVCorrMonAlg.py.

22def LArHVCorrMonConfigCore(helper, algoinstance,flags):
23
24 larHVCorrAlg = helper.addAlgorithm(algoinstance,'larHVCorrMonAlg')
25
26 #define the group names here, as you'll use them multiple times
27 hvCorrGroupName="LArHVCorrMonGroup"
28
29
30 # Edit properties of a algorithm
31 larHVCorrAlg.HVCorrMonGroupName=hvCorrGroupName
32 delta_eta=0.01
33 larHVCorrAlg.EtaGranularity=delta_eta
34 delta_phi=0.01
35 larHVCorrAlg.EtaGranularity=delta_phi
36 num_LB=3000
37 larHVCorrAlg.NumberOfLBs=num_LB
38 threshold=0.02
39 larHVCorrAlg.ErrorThreshold=threshold
40
41
42 from LArMonitoring.GlobalVariables import lArDQGlobals #to define the ranges
43 larHVCorr_hist_path='HVCorrection/' #histogram path
44
45
46 hvCorrGroup = helper.addGroup( larHVCorrAlg,
47 hvCorrGroupName, '/LAr/'
48 )
49
50 #EMB
51 hvCorrGroup.defineHistogram('etaEMBA,phiEMBA;LArHVCorrectionEMBA',
52 title='HV deviation (nominal - corrected) - EMBA;#eta;#phi',
53 type='TH2F',
54 path=larHVCorr_hist_path,
55 opt='kAlwaysCreate',
56 weight='hvcorrEMBA',
57 xbins=int(lArDQGlobals.HVeta_EMB["EMBAPS"][2]/delta_eta),xmin=lArDQGlobals.HVeta_EMB["EMBAPS"][1],xmax=lArDQGlobals.HVeta_EMB["EMBAPS"][2],
58 ybins=lArDQGlobals.HVphi_EMB["EMBAPS"][0],ymin=lArDQGlobals.HVphi_EMB["EMBAPS"][1],ymax=lArDQGlobals.HVphi_EMB["EMBAPS"][2],
59 merge='weightedAverage')
60
61 hvCorrGroup.defineHistogram('etaEMBC,phiEMBC;LArHVCorrectionEMBC',
62 title='HV deviation (nominal - corrected) - EMBA;#eta;#phi',
63 type='TH2F',
64 path=larHVCorr_hist_path,
65 opt='kAlwaysCreate',
66 weight='hvcorrEMBC',
67 xbins=int(lArDQGlobals.HVeta_EMB["EMBAPS"][2]/delta_eta),xmax=lArDQGlobals.HVeta_EMB["EMBAPS"][1]-0.01,xmin=-lArDQGlobals.HVeta_EMB["EMBAPS"][2]-0.01,
68 ybins=lArDQGlobals.HVphi_EMB["EMBAPS"][0],ymin=lArDQGlobals.HVphi_EMB["EMBAPS"][1],ymax=lArDQGlobals.HVphi_EMB["EMBAPS"][2],
69 merge='weightedAverage')
70
71 hvCorrGroup.defineHistogram('LB,nonnominalEMBA;NDeviatingChannelsEMBA',
72 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - EMBA;LumiBlock',
73 type='TProfile',
74 path=larHVCorr_hist_path,
75 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
76 merge='weightedAverage')
77
78 hvCorrGroup.defineHistogram('LB,nonnominalEMBC;NDeviatingChannelsEMBC',
79 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - EMBC;LumiBlock',
80 type='TProfile',
81 path=larHVCorr_hist_path,
82 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
83 merge='weightedAverage')
84
85 #EMEC
86 hvCorrGroup.defineHistogram('etaEMECA,phiEMECA;LArHVCorrectionEMECA',
87 title='HV deviation (nominal - corrected) - EMECA;#eta;#phi',
88 type='TH2F',
89 path=larHVCorr_hist_path,
90 opt='kAlwaysCreate',
91 weight='hvcorrEMECA',
92 xbins=lArDQGlobals.HVeta_EMEC["EMECA"],
93 ybins=lArDQGlobals.HVphi_EMEC["EMECA"],
94 merge='weightedAverage')
95
96 hvCorrGroup.defineHistogram('etaEMECC,phiEMECC;LArHVCorrectionEMECC',
97 title='HV deviation (nominal - corrected) - EMECA;#eta;#phi',
98 type='TH2F',
99 path=larHVCorr_hist_path,
100 opt='kAlwaysCreate',
101 weight='hvcorrEMECC',
102 xbins=lArDQGlobals.HVeta_EMEC["EMECC"],
103 ybins=lArDQGlobals.HVphi_EMEC["EMECC"],
104 merge='weightedAverage')
105
106 hvCorrGroup.defineHistogram('LB,nonnominalEMECA;NDeviatingChannelsEMECA',
107 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - EMECA;LumiBlock',
108 type='TProfile',
109 path=larHVCorr_hist_path,
110 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
111 merge='weightedAverage')
112
113 hvCorrGroup.defineHistogram('LB,nonnominalEMECC;NDeviatingChannelsEMECC',
114 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - EMECC;LumiBlock',
115 type='TProfile',
116 path=larHVCorr_hist_path,
117 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
118 merge='weightedAverage')
119
120 #HEC
121 hvCorrGroup.defineHistogram('etaHECA,phiHECA;LArHVCorrectionHECA',
122 title='HV deviation (nominal - corrected) - HECA;#eta;#phi',
123 type='TH2F',
124 path=larHVCorr_hist_path,
125 opt='kAlwaysCreate',
126 weight='hvcorrHECA',
127 xbins=lArDQGlobals.HVeta_HECFcal["HECA"][0],xmin=lArDQGlobals.HVeta_HECFcal["HECA"][1], xmax=lArDQGlobals.HVeta_HECFcal["HECA"][2],
128 ybins=lArDQGlobals.HVphi_HECFcal["HECA"][0], ymin=lArDQGlobals.HVphi_HECFcal["HECA"][1], ymax=lArDQGlobals.HVphi_HECFcal["HECA"][2],
129 merge='weightedAverage')
130
131 hvCorrGroup.defineHistogram('etaHECC,phiHECC;LArHVCorrectionHECC',
132 title='HV deviation (nominal - corrected) - HECA;#eta;#phi',
133 type='TH2F',
134 path=larHVCorr_hist_path,
135 opt='kAlwaysCreate',
136 weight='hvcorrHECC',
137 xbins=lArDQGlobals.HVeta_HECFcal["HECC"][0],xmin=lArDQGlobals.HVeta_HECFcal["HECC"][1], xmax=lArDQGlobals.HVeta_HECFcal["HECC"][2],
138 ybins=lArDQGlobals.HVphi_HECFcal["HECC"][0], ymin=lArDQGlobals.HVphi_HECFcal["HECC"][1], ymax=lArDQGlobals.HVphi_HECFcal["HECC"][2],
139 merge='weightedAverage')
140
141 hvCorrGroup.defineHistogram('LB,nonnominalHECA;NDeviatingChannelsHECA',
142 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - HECA;LumiBlock',
143 type='TProfile',
144 path=larHVCorr_hist_path,
145 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
146 merge='weightedAverage')
147
148 hvCorrGroup.defineHistogram('LB,nonnominalHECC;NDeviatingChannelsHECC',
149 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - HECC;LumiBlock',
150 type='TProfile',
151 path=larHVCorr_hist_path,
152 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
153 merge='weightedAverage')
154
155 #FCAL
156 hvCorrGroup.defineHistogram('etaFCALA,phiFCALA;LArHVCorrectionFCALA',
157 title='HV deviation (nominal - corrected) - FCALA;#eta;#phi',
158 type='TH2F',
159 path=larHVCorr_hist_path,
160 opt='kAlwaysCreate',
161 weight='hvcorrFCALA',
162 xbins=lArDQGlobals.HVeta_HECFcal["FCalA"][0],xmin=lArDQGlobals.HVeta_HECFcal["FCalA"][1], xmax=lArDQGlobals.HVeta_HECFcal["FCalA"][2],
163 ybins=lArDQGlobals.HVphi_HECFcal["FCalA"][0], ymin=lArDQGlobals.HVphi_HECFcal["FCalA"][1], ymax=lArDQGlobals.HVphi_HECFcal["FCalA"][2],
164 merge='weightedAverage')
165
166 hvCorrGroup.defineHistogram('etaFCALC,phiFCALC;LArHVCorrectionFCALC',
167 title='HV deviation (nominal - corrected) - FCALA;#eta;#phi',
168 type='TH2F',
169 path=larHVCorr_hist_path,
170 opt='kAlwaysCreate',
171 weight='hvcorrFCALC',
172 xbins=lArDQGlobals.HVeta_HECFcal["FCalC"][0],xmin=lArDQGlobals.HVeta_HECFcal["FCalC"][1], xmax=lArDQGlobals.HVeta_HECFcal["FCalC"][2],
173 ybins=lArDQGlobals.HVphi_HECFcal["FCalC"][0], ymin=lArDQGlobals.HVphi_HECFcal["FCalC"][1], ymax=lArDQGlobals.HVphi_HECFcal["FCalC"][2],
174 merge='weightedAverage')
175
176 hvCorrGroup.defineHistogram('LB,nonnominalFCALA;NDeviatingChannelsFCALA',
177 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - FCALA;LumiBlock',
178 type='TProfile',
179 path=larHVCorr_hist_path,
180 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
181 merge='weightedAverage')
182
183 hvCorrGroup.defineHistogram('LB,nonnominalFCALC;NDeviatingChannelsFCALC',
184 title='Number of channels per LB with HV corr>'+str(100*threshold)+' - FCALC;LumiBlock',
185 type='TProfile',
186 path=larHVCorr_hist_path,
187 xbins=num_LB,xmin=0.5,xmax=num_LB+0.5,
188 merge='weightedAverage')
189
190

Variable Documentation

◆ cfg

LArHVCorrMonAlg.cfg = MainServicesCfg(flags)

Definition at line 207 of file LArHVCorrMonAlg.py.

◆ file

str LArHVCorrMonAlg.file = 'data16_13TeV.00311321.physics_Main.recon.AOD.r9264/AOD.11038520._000001.pool.root.1'

Definition at line 198 of file LArHVCorrMonAlg.py.

◆ Files

LArHVCorrMonAlg.Files

Definition at line 199 of file LArHVCorrMonAlg.py.

◆ flags

LArHVCorrMonAlg.flags = initConfigFlags()

Definition at line 195 of file LArHVCorrMonAlg.py.

◆ HISTFileName

LArHVCorrMonAlg.HISTFileName

Definition at line 201 of file LArHVCorrMonAlg.py.

◆ isMC

LArHVCorrMonAlg.isMC

Definition at line 200 of file LArHVCorrMonAlg.py.

◆ Nevents

int LArHVCorrMonAlg.Nevents = 10

Definition at line 212 of file LArHVCorrMonAlg.py.

◆ nightly

str LArHVCorrMonAlg.nightly = '/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/CommonInputs/'

Definition at line 197 of file LArHVCorrMonAlg.py.