12SVD Default CoGOnly Error Scaling Factors importer.
15from ROOT
import Belle2
16from ROOT.Belle2
import SVDPosErrScaleFactors
17from basf2
import conditions
as b2conditions
28now = datetime.datetime.now()
33 Defining the python module to do the import.
38 call the functions to import the cluster parameters
43 clsParam = SVDPosErrScaleFactors()
44 clsParam.scaleError_clSize1 = clsScaleErrSize1
45 clsParam.scaleError_clSize2 = clsScaleErrSize2
46 clsParam.scaleError_clSize3 = clsScaleErrSize3
47 clsParam.scaleError_clSize4 = clsScaleErrSize4
48 clsParam.scaleError_clSize5 = clsScaleErrSize5
52 "CoGOnlyErrorScaleFactors_default_" +
55 "_INFO:_scaleFactors=1")
59 for layer
in geoCache.getLayers(Belle2.VXD.SensorInfoBase.SVD):
60 layerNumber = layer.getLayerNumber()
61 for ladder
in geoCache.getLadders(layer):
62 ladderNumber = ladder.getLadderNumber()
63 for sensor
in geoCache.getSensors(ladder):
64 sensorNumber = sensor.getSensorNumber()
66 print(
"setting CoGOnly Error Scale Factors for " +
67 str(layerNumber) +
"." + str(ladderNumber) +
"." + str(sensorNumber) +
"." + str(side))
68 cls_payload.set(layerNumber, ladderNumber, sensorNumber, bool(side), 1, clsParam)
73b2conditions.prepend_globaltag(
'svd_onlySVDinGeoConfiguration')
75main = b2.create_path()
78eventinfosetter = b2.register_module(
'EventInfoSetter')
79eventinfosetter.param({
'evtNumList': [1],
'expList': 0,
'runList': 0})
80main.add_module(eventinfosetter)
82main.add_module(
"Gearbox")
83main.add_module(
"Geometry")
88progress = b2.register_module(
'Progress')
89main.add_module(progress)
static IntervalOfValidity always()
Function that returns an interval of validity that is always valid, c.f.
base class for calibrations classes
static GeoCache & getInstance()
Return a reference to the singleton instance.
static Database & Instance()
Instance of a singleton Database.