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

class Particle:
    def __init__(self):
        self.vx = 1
        self.vy = 1
        self.vz = 300
        self.m = 0.522
        self.q = 1


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