~maddevelopers/mg5amcnlo/new_clustering

« back to all changes in this revision

Viewing changes to tests/unit_tests/various/test_shower_card.py

  • Committer: Rikkert Frederix
  • Date: 2021-09-09 15:51:40 UTC
  • mfrom: (78.75.502 3.2.1)
  • Revision ID: frederix@physik.uzh.ch-20210909155140-rg6umfq68h6h47cf
merge with 3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
# For more information, visit madgraph.phys.ucl.ac.be and amcatnlo.web.cern.ch
13
13
#
14
14
################################################################################
 
15
from __future__ import absolute_import
15
16
import os
16
17
import sys
17
18
import tests.unit_tests as unittest
18
19
 
19
20
import madgraph.various.shower_card as shower_card
 
21
from six.moves import zip
 
22
 
20
23
import madgraph.various.misc as misc
21
24
pjoin = os.path.join
22
25
 
 
26
 
23
27
class TestShowerCard(unittest.TestCase):
24
28
    """Check the class linked to a block of the param_card"""
25
29