Newer
Older
from analysis import Analysis
from Detector import Detector
class Particle:
def __init__(self):
lorenzennio
committed
self.vx = 10
self.vy = 10
lorenzennio
committed
self.q = -1
DET = Detector()
DETRes = DET.detect(Particle())
lorenzennio
committed
ANA = Analysis()
ANA.fill(DETRes)
lorenzennio
committed
ANA.Fit()
print(ANA.results)
#ANA.xFit()
#ANA.yFit()
#ANA.zFit()