Belle II Software development
Calibration.py
1#!/usr/bin/env python3
2
3
10
11# EKLM alignment along strips.
12
13import basf2
14from ROOT import Belle2
15import sys
16
17# Set the global log level
18basf2.set_log_level(basf2.LogLevel.INFO)
19
20gearbox = basf2.register_module('Gearbox')
21gearbox.initialize()
22
24algo.setInputFileNames(sys.argv[1:])
25algo.setOutputFile('alignment_along_strips.root')
26algo.execute()
27algo.commit()