Skip to content
Snippets Groups Projects
test.py 359 B
Newer Older
from analysis import Analysis
from Detector import Detector

class Particle:
    def __init__(self):
        self.vz = 300
        self.m = 0.522


DET = Detector()
DETRes = DET.detect(Particle())

ANA.Fit()
print(ANA.results)
#ANA.xFit()
#ANA.yFit()
#ANA.zFit()