~maddevelopers/mg5amcnlo/2.9.4

« back to all changes in this revision

Viewing changes to models/__init__.py

working version of creating the model. and start of instalation of the aloha

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
################################################################################
15
15
"""All the UFO MODEL"""
16
16
 
17
 
from madgraph.iolibs.import_ufo import import_model
 
 
b'\\ No newline at end of file'
 
17
import sys
 
18
 
 
19
def load_model(name):
 
20
 
 
21
    model_pos = 'models.%s' % name
 
22
    __import__(model_pos)
 
23
    return sys.modules[model_pos]
 
 
b'\\ No newline at end of file'