Esempio n. 1
0
 def from_lhe(cls, args):
     from loaders.leshouchesevent import load_event
     vertices, particles, units = load_event(args)
     return cls(vertices, particles, units)
Esempio n. 2
0
 def from_pythia_log(cls, args):
     from .loaders.pythialog import load_event
     vertices, particles, units = load_event(args)
     return cls(vertices, particles, units)
Esempio n. 3
0
 def from_hepmc(cls, args):
     from .loaders.hepmc import load_event
     vertices, particles, units, pdfinfo = load_event(args)
     return cls(vertices, particles, units, pdfinfo)
Esempio n. 4
0
    def from_lhe(cls, args):
        from loaders.leshouchesevent import load_event
	vertices, particles, units = load_event(args)
	return cls(vertices, particles, units)
Esempio n. 5
0
 def from_pythia_log(cls, args):
     from .loaders.pythialog import load_event
     vertices, particles, units = load_event(args)
     return cls(vertices, particles, units)
Esempio n. 6
0
 def from_hepmc(cls, args):
     from .loaders.hepmc import load_event
     vertices, particles, units = load_event(args)
     return cls(vertices, particles, units)