Belle II Software  release-05-02-19
Calibration.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 # EKLM alingment along strips.
5 
6 from basf2 import *
7 from reconstruction import *
8 from ROOT import Belle2
9 import sys
10 
11 # Set the global log level
12 set_log_level(LogLevel.INFO)
13 
14 gearbox = register_module('Gearbox')
15 gearbox.initialize()
16 
18 algo.setInputFileNames(sys.argv[1:])
19 algo.setOutputFile('alignment_along_strips.root')
20 algo.execute()
21 algo.commit()
Belle2::EKLMAlignmentAlongStripsAlgorithm
EKLM time calibration algorithm.
Definition: EKLMAlignmentAlongStripsAlgorithm.h:33