Exemple #1
0
 def from_lhe(cls, args):
     from loaders.leshouchesevent import load_event
     vertices, particles, units = load_event(args)
     return cls(vertices, particles, units)
Exemple #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)
Exemple #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)
Exemple #4
0
    def from_lhe(cls, args):
        from loaders.leshouchesevent import load_event
	vertices, particles, units = load_event(args)
	return cls(vertices, particles, units)
Exemple #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)
Exemple #6
0
 def from_hepmc(cls, args):
     from .loaders.hepmc import load_event
     vertices, particles, units = load_event(args)
     return cls(vertices, particles, units)