Belle II Software development
ndFinderREADME.py
1#!/usr/bin/env python3
2
3
26
27
30
31import numpy as np
32
33# Files containing the zero suppressed track to hit relations
34# (hit curves in track parameter space).
35fileAxial = 'ndFinderAxialShallow.txt.gz'
36fileStereo = 'ndFinderStereoShallow.txt.gz'
37
38axialFlat = np.loadtxt(fileAxial, dtype='uint8')
39stereoFlat = np.loadtxt(fileStereo, dtype='uint8')
40axialComp = axialFlat.reshape((41, 3, 40, 15))
41stereoComp = stereoFlat.reshape((32, 3, 40, 15, 9))