19 from ROOT
import Belle2
39 fileNames = [
'eclGammaGammaECollectorOutput.root']
42 fileNames = glob.glob(sys.argv[1])
43 print(
"input fileNames = ", fileNames)
44 algo.setInputFileNames(fileNames)
45 algo.setOutputName(
"eclGammaGammaE_algorithm.root")
48 algo.setCellIDHi(8736)
49 algo.setMinEntries(150)
50 algo.setMaxIterations(10)
51 algo.setTRatioMin(0.45)
52 algo.setTRatioMax(0.60)
53 algo.setUpperEdgeThresh(0.02)
54 algo.setPerformFits(
True)
55 algo.setFindExpValues(
False)
60 alg_result = algo.execute()
61 print(
"result of eclGammaGammaEAlgorithm was", alg_result)