~mg5core1/mg5amcnlo/2.6.7

« back to all changes in this revision

Viewing changes to tests/loop_smgrav/__init__.py

  • Committer: olivier-mattelaer
  • Date: 2019-09-13 14:04:58 UTC
  • Revision ID: olivier-mattelaer-20190913140458-5ilmavms0mv5dhu0
change some default of the run_card and fix some tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import particles
2
 
import couplings
3
 
import CT_couplings
4
 
import lorentz
5
 
import parameters
6
 
import CT_parameters
7
 
import vertices
8
 
import CT_vertices
9
 
import write_param_card
10
 
import coupling_orders
11
 
 
12
 
# model options
13
 
gauge = [0, 1]
14
 
 
15
 
all_particles = particles.all_particles
16
 
all_vertices = vertices.all_vertices
17
 
all_CTvertices = vertices.all_CTvertices
18
 
all_couplings = couplings.all_couplings
19
 
all_lorentz = lorentz.all_lorentz
20
 
all_parameters = parameters.all_parameters
21
 
all_CTparameters = CT_parameters.all_CTparameters
22
 
all_functions = function_library.all_functions
23
 
all_orders = coupling_orders.all_orders
24
 
 
25
 
__author__ = "N. Christensen, C. Duhr"
26
 
__version__ = "1.2"
27
 
__email__ = "neil@pa.msu.edu, claude.duhr@uclouvain.be"