Belle II Software  release-05-01-25
Calibration.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 # EKLM time calibration.
5 
6 import sys
7 import basf2
8 from ROOT import Belle2
9 
10 # Set the global log level
11 basf2.set_log_level(basf2.LogLevel.INFO)
12 
13 gearbox = basf2.register_module('Gearbox')
14 gearbox.initialize()
15 
17 algo.setInputFileNames(sys.argv[1:])
18 # Uncomment the following line to draw histograms.
19 # algo.setDebug()
20 algo.execute()
21 algo.commit()
Belle2::EKLMTimeCalibrationAlgorithm
EKLM time calibration algorithm.
Definition: EKLMTimeCalibrationAlgorithm.h:33