Merge lp:~mg5core1/mg5amcnlo/2.5.4 into lp:mg5amcnlo/lts

Proposed by Olivier Mattelaer
Status: Merged
Merged at revision: 271
Proposed branch: lp:~mg5core1/mg5amcnlo/2.5.4
Merge into: lp:mg5amcnlo/lts
Diff against target: 1856 lines (+619/-162)
26 files modified
MadSpin/decay.py (+4/-4)
MadSpin/interface_madspin.py (+61/-15)
MadSpin/src/driver.f (+1/-1)
README.developer (+3/-5)
README.release (+3/-5)
Template/LO/SubProcesses/makefile (+2/-2)
input/.cowgraph.cow (+15/-0)
madgraph/interface/common_run_interface.py (+22/-4)
madgraph/interface/extended_cmd.py (+2/-1)
madgraph/interface/madevent_interface.py (+2/-3)
madgraph/interface/madgraph_interface.py (+3/-0)
madgraph/iolibs/template_files/loop_optimized/loop_matrix_standalone.inc (+9/-0)
madgraph/madevent/gen_ximprove.py (+11/-4)
madgraph/various/cluster.py (+3/-1)
madgraph/various/lhe_parser.py (+62/-41)
madgraph/various/misc.py (+106/-1)
tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_dxu_wp%V0_dxu_wp%loop_matrix.f (+10/-0)
tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_udx_wp%V0_udx_wp%loop_matrix.f (+10/-0)
tests/input_files/IOTestsComparison/MadLoop_output_from_the_interface/TIR_output/%ggttx_IOTest%SubProcesses%P0_gg_ttx%loop_matrix.f (+10/-0)
tests/input_files/IOTestsComparison/TestCmdMatchBox/MatchBoxOutput/%TEST%SubProcesses%P1_uux_uux%loop_matrix.f (+10/-0)
tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/dux_mumvmxg/loop_matrix.f (+10/-0)
tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/gg_wmtbx/loop_matrix.f (+10/-0)
tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/ddx_ttx/loop_matrix.f (+10/-0)
tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/gg_ttx/loop_matrix.f (+10/-0)
tests/time_db (+85/-75)
tests/unit_tests/various/test_lhe_parser.py (+145/-0)
To merge this branch: bzr merge lp:~mg5core1/mg5amcnlo/2.5.4
Reviewer Review Type Date Requested Status
MadTeam Pending
Review via email: mp+321043@code.launchpad.net

Description of the change

Hi,

I'm going to merge this branch relatively quickly.
One fix worries me too much to keep it like that.
So I'll freeze the branch tonight.

Cheers,

Olivier

To post a comment you must log in.
lp:~mg5core1/mg5amcnlo/2.5.4 updated
282. By Valentin Hirschi

1. Small fix to make sure to not check the stability of fixed orders not included.

283. By Valentin Hirschi

1. Merged with cowgraph april fool.

Revision history for this message
Rikkert Frederix (frederix) wrote :

Hi Olivier,

What's the rush? The UpdateNotes don't say anything about important bug fixes...

Best,
Rikkert

Revision history for this message
Olivier Mattelaer (olivier-mattelaer) wrote :

Hi,

They are an import missing in madevent_interface.
This does not make default run to crash but as some side effect for post-processing.

Cheers,

Olivier

> On 27 Mar 2017, at 13:22, Rikkert Frederix <email address hidden> wrote:
>
> Hi Olivier,
>
> What's the rush? The UpdateNotes don't say anything about important bug fixes...
>
> Best,
> Rikkert
>
>
> --
> https://code.launchpad.net/~mg5core1/mg5amcnlo/2.5.4/+merge/321043
> Your team mg5core1 is subscribed to branch lp:~mg5core1/mg5amcnlo/2.5.4.

lp:~mg5core1/mg5amcnlo/2.5.4 updated
284. By olivier-mattelaer

remove some reference to the MG5 paper.

285. By olivier-mattelaer

Fixing IOTest

286. By olivier-mattelaer

fixing the last two acceptance tests

287. By olivier-mattelaer

update the offline installer of ninja

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'MadSpin/decay.py'
2--- MadSpin/decay.py 2017-02-17 15:21:23 +0000
3+++ MadSpin/decay.py 2017-03-28 15:23:35 +0000
4@@ -1916,8 +1916,10 @@
5 sd=0.0
6 for item in list_obj:
7 sd+=(item-mean)**2
8- sd=sd/(N-1.0)
9-
10+ if N > 1:
11+ sd=math.sqrt(sd/(N-1.0))
12+ else:
13+ sd = mean/5.
14 return mean, sd
15
16 class decay_all_events(object):
17@@ -3210,14 +3212,12 @@
18 weights.sort(reverse=True)
19 assert weights[0] >= weights[1]
20 ave_weight, std_weight = decay_tools.get_mean_sd(weights)
21- std_weight=math.sqrt(std_weight)
22 base_max_weight = 1.05 * (ave_weight+self.options['nb_sigma']*std_weight)
23
24 for i in [20, 30, 40, 50]:
25 if len(weights) < i:
26 break
27 ave_weight, std_weight = decay_tools.get_mean_sd(weights[:i])
28- std_weight=math.sqrt(std_weight)
29 base_max_weight = max(base_max_weight, 1.05 * (ave_weight+self.options['nb_sigma']*std_weight))
30
31 if weights[0] > base_max_weight:
32
33=== modified file 'MadSpin/interface_madspin.py'
34--- MadSpin/interface_madspin.py 2017-02-17 15:21:23 +0000
35+++ MadSpin/interface_madspin.py 2017-03-28 15:23:35 +0000
36@@ -88,7 +88,8 @@
37 'onlyhelicity': False,
38 'spinmode': "madspin",
39 'use_old_dir': False, #should be use only for faster debugging
40- 'run_card': None # define cut for spinmode==none.
41+ 'run_card': None, # define cut for spinmode==none.
42+ 'fixed_order': False # to activate fixed order handling of counter-event
43 }
44
45
46@@ -419,7 +420,14 @@
47 self.options['run_card'] = banner.RunCardLO()
48 self.options['run_card'].remove_all_cut()
49 self.options['run_card'][args[1]] = args[2]
50-
51+ elif args[0] in 'fixed_order':
52+ if args[1].lower() in ['t', 'true']:
53+ self.options['fixed_order'] = True
54+ logger.warning('Fix order madspin fails to have the correct scale information. This can bias the results!')
55+ logger.warning('Not all functionality of MadSpin handle this mode correctly (only onshell mode so far).')
56+ else:
57+ self.options['fixed_order'] = False
58+ logger.info('fixed_order options set to %s', self.options['fixed_order'])
59 else:
60 self.options[args[0]] = int(args[1])
61
62@@ -712,6 +720,15 @@
63
64 args = self.split_arg(line)
65
66+
67+ asked_to_decay = set()
68+ for part in self.list_branches.keys():
69+ if part in self.mg5cmd._multiparticles:
70+ for pdg in self.mg5cmd._multiparticles[part]:
71+ asked_to_decay.add(pdg)
72+ else:
73+ asked_to_decay.add(self.mg5cmd._curr_model.get('name2pdg')[part])
74+
75 #0. Define the path where to write the file
76 self.path_me = os.path.realpath(self.options['curr_dir'])
77 if self.options['ms_dir']:
78@@ -731,7 +748,7 @@
79 for event in orig_lhe:
80 nb_event +=1
81 for particle in event:
82- if particle.status == 1 and particle.pdg in self.final_state:
83+ if particle.status == 1 and particle.pdg in asked_to_decay:
84 # final state and tag as to decay
85 to_decay[particle.pdg] += 1
86
87@@ -1086,6 +1103,14 @@
88
89 args = self.split_arg(line)
90
91+ asked_to_decay = set()
92+ for part in self.list_branches.keys():
93+ if part in self.mg5cmd._multiparticles:
94+ for pdg in self.mg5cmd._multiparticles[part]:
95+ asked_to_decay.add(pdg)
96+ else:
97+ asked_to_decay.add(self.mg5cmd._curr_model.get('name2pdg')[part])
98+
99 #0. Define the path where to write the file
100 self.path_me = os.path.realpath(self.options['curr_dir'])
101 if self.options['ms_dir']:
102@@ -1099,14 +1124,18 @@
103
104 self.events_file.close()
105 orig_lhe = lhe_parser.EventFile(self.events_file.name)
106+ if self.options['fixed_order']:
107+ orig_lhe.eventgroup = True
108
109 #count the number of particle need to be decayed.
110 to_decay = collections.defaultdict(int)
111 nb_event = 0
112 for event in orig_lhe:
113+ if self.options['fixed_order']:
114+ event = event[0]
115 nb_event +=1
116 for particle in event:
117- if particle.status == 1 and particle.pdg in self.final_state:
118+ if particle.status == 1 and particle.pdg in asked_to_decay:
119 # final state and tag as to decay
120 to_decay[particle.pdg] += 1
121 #misc.sprint(to_decay)
122@@ -1162,7 +1191,7 @@
123 nb_needed = int(efficiency*nb_needed) + nevents_for_max
124 evt_decayfile[pdg], pwidth = self.generate_events(pdg, nb_needed, mg5, output_width=True)
125 if pwidth > 1.01*totwidth:
126- logger.warning('partial width (%s) larger than total width (%s) --from param_card--')
127+ logger.warning('partial width (%s) larger than total width (%s) --from param_card--', pwidth, totwidth)
128 elif pwidth > totwidth:
129 pwidth = totwidth
130 br = pwidth / totwidth
131@@ -1216,6 +1245,9 @@
132 #5. generate the decay
133 orig_lhe.seek(0)
134 output_lhe = lhe_parser.EventFile(orig_lhe.name.replace('.lhe', '_decayed.lhe'), 'w')
135+ if self.options['fixed_order']:
136+ output_lhe.eventgroup = True
137+
138 self.banner.scale_init_cross(self.branching_ratio)
139 self.banner.write(output_lhe, close_tag=False)
140
141@@ -1225,6 +1257,8 @@
142
143 start = time.time()
144 for curr_event,production in enumerate(orig_lhe):
145+ if self.options['fixed_order']:
146+ production, counterevt= production[0], production[1:]
147 if curr_event and curr_event % 1000 == 0 and float(str(curr_event)[1:]) ==0:
148 print "decaying event number %s. Efficiency: %s [%s s]" % (curr_event, 1/self.efficiency, time.time()-start)
149 while 1:
150@@ -1232,14 +1266,24 @@
151 decays = self.get_decay_from_file(production, evt_decayfile, nb_event-curr_event)
152 full_evt, wgt = self.get_onshell_evt_and_wgt(production, decays)
153 if random.random()*maxwgt < wgt:
154+ if self.options['fixed_order']:
155+ full_evt = [full_evt] + [evt.add_decays(decays) for evt in counterevt]
156 break
157 self.efficiency = curr_event/nb_try
158- # change the weight associate to the event
159- full_evt.wgt *= self.branching_ratio
160- wgts = full_evt.parse_reweight()
161- for key in wgts:
162- wgts[key] *= self.branching_ratio
163- output_lhe.write(str(full_evt))
164+ if self.options['fixed_order']:
165+ for evt in full_evt:
166+ # change the weight associate to the event
167+ evt.wgt *= self.branching_ratio
168+ wgts = evt.parse_reweight()
169+ for key in wgts:
170+ wgts[key] *= self.branching_ratio
171+ else:
172+ # change the weight associate to the event
173+ full_evt.wgt *= self.branching_ratio
174+ wgts = full_evt.parse_reweight()
175+ for key in wgts:
176+ wgts[key] *= self.branching_ratio
177+ output_lhe.write_events(full_evt)
178
179 output_lhe.write('</LesHouchesEvents>\n')
180 self.efficiency = 1 # to let me5 to write the correct number of events
181@@ -1328,6 +1372,8 @@
182 maxwgt = 0
183 orig_lhe.seek(0)
184 base_event = orig_lhe.next()
185+ if self.options['fixed_order']:
186+ base_event = base_event[0]
187 for j in range(self.options['max_weight_ps_point']):
188 decays = self.get_decay_from_file(base_event, evt_decayfile, nevents-i)
189 #carefull base_event is modified by the following function
190@@ -1339,7 +1385,6 @@
191 assert all_maxwgt[0] >= all_maxwgt[1]
192 decay_tools=madspin.decay_misc()
193 ave_weight, std_weight = decay_tools.get_mean_sd(all_maxwgt)
194- std_weight=math.sqrt(std_weight)
195 base_max_weight = 1.05 * (ave_weight+self.options['nb_sigma']*std_weight)
196
197 # misc.sprint(all_maxwgt)
198@@ -1347,7 +1392,6 @@
199 if len(all_maxwgt) < i:
200 break
201 ave_weight, std_weight = decay_tools.get_mean_sd(all_maxwgt[:i])
202- std_weight=math.sqrt(std_weight)
203 base_max_weight = max(base_max_weight, 1.05 * (ave_weight+self.options['nb_sigma']*std_weight))
204
205 if all_maxwgt[1] > base_max_weight:
206@@ -1390,7 +1434,6 @@
207
208 # misc.sprint([p.pdg for p in production])
209 # misc.sprint([p.pdg for p in full_event])
210-# misc.sprint(full_me, production_me, decay_me)
211
212 return full_event, full_me/(production_me*decay_me)
213
214@@ -1404,7 +1447,10 @@
215 if pdir in self.all_f2py:
216 p = event.get_momenta(orig_order)
217 p = rwgt_interface.ReweightInterface.invert_momenta(p)
218- return self.all_f2py[pdir](p, event.aqcd, 0)
219+ if event[0].color1 == 599 and event.aqcd==0:
220+ return self.all_f2py[pdir](p, 0.113, 0)
221+ else:
222+ return self.all_f2py[pdir](p, event.aqcd, 0)
223 else:
224 if sys.path[0] != pjoin(self.path_me, 'madspin_me', 'SubProcesses'):
225 sys.path.insert(0, pjoin(self.path_me, 'madspin_me', 'SubProcesses'))
226
227=== modified file 'MadSpin/src/driver.f'
228--- MadSpin/src/driver.f 2016-11-04 15:29:19 +0000
229+++ MadSpin/src/driver.f 2017-03-28 15:23:35 +0000
230@@ -904,7 +904,7 @@
231 else
232 ! might be negative because of numerical unstabilities
233 index_p2=itree(2,i-1)
234- if (index_p2.gt.0) then
235+ if (index_p2.ge.0) then
236 m2_tchan(i)=m(index_p2)
237 else
238 if (m(index_p2).gt.5d-2)then
239
240=== modified file 'README.developer'
241--- README.developer 2013-11-15 11:21:46 +0000
242+++ README.developer 2017-03-28 15:23:35 +0000
243@@ -17,11 +17,9 @@
244 * Code download from: *
245 * https://launchpad.net/madgraph5 *
246 * *
247-* Please refer to: MadGraph5_aMC@NLO *
248-* J. Alwall, M. Herquet, F. Maltoni, *
249-* O. Mattelaer, T. Stelzer *
250-* JHEP 1106 (2011) 128 *
251-* arXiv:1106.0522 [hep-ph] *
252+* Please refer to: MadGraph5_aMC@NLO paper *
253+* J. Alwall et al. *
254+* arXiv:1405.0301, JHEP 1407 (2014) 079 *
255 ************************************************************
256
257
258
259=== modified file 'README.release'
260--- README.release 2013-11-15 11:21:46 +0000
261+++ README.release 2017-03-28 15:23:35 +0000
262@@ -17,11 +17,9 @@
263 * Code download from: *
264 * https://launchpad.net/madgraph5 *
265 * *
266-* Please refer to: MadGraph5_aMC@NLO *
267-* J. Alwall, M. Herquet, F. Maltoni, *
268-* O. Mattelaer, T. Stelzer *
269-* JHEP 1106 (2011) 128 *
270-* arXiv:1106.0522 [hep-ph] *
271+* Please refer to: MadGraph5_aMC@NLO paper *
272+* J. Alwall et al. *
273+* arXiv:1405.0301, JHEP 1407 (2014) 079 *
274 ************************************************************
275
276 To run MadGraph5_aMC@NLO using the command line interface
277
278=== modified file 'Template/LO/SubProcesses/makefile'
279--- Template/LO/SubProcesses/makefile 2017-02-14 15:08:19 +0000
280+++ Template/LO/SubProcesses/makefile 2017-03-28 15:23:35 +0000
281@@ -43,8 +43,8 @@
282 $(PROG): $(PROCESS) auto_dsig.o $(LIBS)
283 $(FC) -o $(PROG) $(PROCESS) $(LINKLIBS) $(LDFLAGS) $(BIASDEPENDENCIES)
284
285-gensym: $(SYMMETRY) configs.inc $(LIBS)
286- $(FC) -o gensym $(SYMMETRY) $(LINKLIBS) $(LDFLAGS) $(BIASDEPENDENCIES)
287+gensym: $(SYMMETRY) configs.inc $(LIBDIR)libmodel.$(libext) $(LIBDIR)libgeneric.$(libext)
288+ $(FC) -o gensym $(SYMMETRY) -L../../lib/ -lmodel -lgeneric -lpdf $(llhapdf) $(LDFLAGS)
289
290 $(LIBDIR)libmodel.$(libext): ../../Cards/param_card.dat
291 cd ../../Source/MODEL; make
292
293=== added file 'input/.cowgraph.cow'
294--- input/.cowgraph.cow 1970-01-01 00:00:00 +0000
295+++ input/.cowgraph.cow 2017-03-28 15:23:35 +0000
296@@ -0,0 +1,15 @@
297+##
298+## R. Ruiz
299+## 2017 March 21
300+## Based on cowsay/think library
301+##
302+$the_cow = <<EOC ;
303+ $thoughts [Art by K. Gotanda]
304+ $thoughts
305+ $thoughts
306+
307+ ><(((('> ><(((('> ><(((('> ><(((('> ><(((('>
308+
309+
310+
311+EOC
312
313=== modified file 'madgraph/interface/common_run_interface.py'
314--- madgraph/interface/common_run_interface.py 2017-03-03 23:41:19 +0000
315+++ madgraph/interface/common_run_interface.py 2017-03-28 15:23:35 +0000
316@@ -565,6 +565,7 @@
317 debug_output = 'ME5_debug'
318 helporder = ['Main Commands', 'Documented commands', 'Require MG5 directory',
319 'Advanced commands']
320+ sleep_for_error = True
321
322 # The three options categories are treated on a different footage when a
323 # set/save configuration occur. current value are kept in self.options
324@@ -3058,6 +3059,7 @@
325 - If a scan parameter is define. create the iterator and recall this fonction
326 on the first element.
327 - If some width are set on 'Auto', call the computation tools.
328+ - Check that no width are too small (raise a warning if this is the case)
329 3) if dependent is on True check for dependent parameter (automatic for scan)"""
330
331 pattern_scan = re.compile(r'''^(decay)?[\s\d]*scan''', re.I+re.M)
332@@ -3090,11 +3092,26 @@
333 Those will be computed as soon as you have finish the edition of the cards.
334 If you want to force the computation right now and being able to re-edit
335 the cards afterwards, you can type \"compute_wdiths\".''')
336-
337+
338+ card = check_param_card.ParamCard(path)
339 if dependent:
340- card = check_param_card.ParamCard(path)
341+
342 AskforEditCard.update_dependent(self, self.me_dir, card, path, timer=20)
343
344+ for param in card['decay']:
345+ width = param.value
346+ if width == 0:
347+ continue
348+ try:
349+ mass = card['mass'].get(param.lhacode).value
350+ except Exception:
351+ logger.warning('Missing mass in the lhef file (%s) . Please fix this (use the "update missing" command if needed)', param.lhacode[0])
352+ continue
353+ if width/mass < 1e-12:
354+ logger.error('The width of particle %s is too small for an s-channel resonance (%s). If you have this particle in an s-channel, this is likely to create numerical instabilities .', param.lhacode[0], width)
355+ if CommonRunCmd.sleep_for_error:
356+ time.sleep(5)
357+ CommonRunCmd.sleep_for_error = False
358 return
359
360 def add_error_log_in_html(self, errortype=None):
361@@ -5179,8 +5196,9 @@
362 if extrapaths:
363 self.do_set('shower_card extrapaths %s ' % ' '.join(extrapaths))
364 else:
365- self.do_set('shower_card extrapaths None ')
366-
367+ self.do_set('shower_card extrapaths None ')
368+
369+
370 def reask(self, *args, **opt):
371
372 cmd.OneLinePathCompletion.reask(self,*args, **opt)
373
374=== modified file 'madgraph/interface/extended_cmd.py'
375--- madgraph/interface/extended_cmd.py 2017-02-02 14:05:47 +0000
376+++ madgraph/interface/extended_cmd.py 2017-03-28 15:23:35 +0000
377@@ -1374,7 +1374,8 @@
378 if hasattr(self, 'me_dir'):
379 me_dir = os.path.basename(me_dir) + ' '
380
381-
382+ misc.EasterEgg('error')
383+
384 try:
385 raise
386 except self.InvalidCmd as error:
387
388=== modified file 'madgraph/interface/madevent_interface.py'
389--- madgraph/interface/madevent_interface.py 2017-03-06 20:39:01 +0000
390+++ madgraph/interface/madevent_interface.py 2017-03-28 15:23:35 +0000
391@@ -31,7 +31,7 @@
392 import time
393 import tarfile
394 import StringIO
395-#import shutil
396+import shutil
397 import copy
398
399 try:
400@@ -6281,8 +6281,7 @@
401 # Now run make
402 devnull = open(os.devnull, 'w')
403 start=time.time()
404- retcode = subprocess.call(['make','check'],
405- cwd=dir_name, stdout=devnull, stderr=devnull)
406+ retcode = misc.compile(arg=['-j1','check'], cwd=dir_name, nb_core=1)
407 compilation_time = time.time()-start
408 if retcode != 0:
409 logging.info("Error while executing make in %s" % dir_name)
410
411=== modified file 'madgraph/interface/madgraph_interface.py'
412--- madgraph/interface/madgraph_interface.py 2017-03-07 15:43:44 +0000
413+++ madgraph/interface/madgraph_interface.py 2017-03-28 15:23:35 +0000
414@@ -2929,6 +2929,9 @@
415 self.do_install('update --mode=mg5_end')
416 print
417
418+ misc.EasterEgg('quit')
419+
420+
421 return value
422
423 # Add a process to the existing multiprocess definition
424
425=== modified file 'madgraph/iolibs/template_files/loop_optimized/loop_matrix_standalone.inc'
426--- madgraph/iolibs/template_files/loop_optimized/loop_matrix_standalone.inc 2016-09-08 23:15:34 +0000
427+++ madgraph/iolibs/template_files/loop_optimized/loop_matrix_standalone.inc 2017-03-28 15:23:35 +0000
428@@ -2091,6 +2091,8 @@
429 C
430 C GLOBAL VARIABLES
431 C
432+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
433+ COMMON/%(proc_prefix)sCHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
434 integer I_LIB
435 common/%(proc_prefix)sI_LIB/I_LIB
436 include 'MadLoopParams.inc'
437@@ -2149,6 +2151,13 @@
438 ENDDO
439 ENDIF
440
441+c Make sure to hard-set to zero accuracies of coupling orders not included
442+ if (K.ne.0) THEN
443+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
444+ acc(k) = 0.0d0
445+ ENDIF
446+ ENDIF
447+
448 enddo
449
450 end
451
452=== modified file 'madgraph/madevent/gen_ximprove.py'
453--- madgraph/madevent/gen_ximprove.py 2017-02-14 15:08:19 +0000
454+++ madgraph/madevent/gen_ximprove.py 2017-03-28 15:23:35 +0000
455@@ -162,15 +162,22 @@
456 [float(s) for s in jobs]
457 except Exception:
458 logger.debug("unformated string found in gensym. Please check:\n %s" % stdout)
459+ done=False
460 job_list[Pdir] = []
461- for s in jobs:
462+ lines = stdout.split('\n')
463+ for l in lines:
464 try:
465- float(s)
466+ [float(s) for s in l.split()]
467 except:
468 continue
469 else:
470- job_list[Pdir].append(s)
471-
472+ if done:
473+ raise Exception, 'Parsing error in gensym: %s' % stdout
474+ job_list[Pdir] = l.split()
475+ done = True
476+ if not done:
477+ raise Exception, 'Parsing error in gensym: %s' % stdout
478+
479 self.cmd.compile(['madevent'], cwd=Pdir)
480 self.submit_to_cluster(job_list)
481 return job_list, P_zero_result
482
483=== modified file 'madgraph/various/cluster.py'
484--- madgraph/various/cluster.py 2016-09-01 23:26:55 +0000
485+++ madgraph/various/cluster.py 2017-03-28 15:23:35 +0000
486@@ -260,6 +260,8 @@
487 elif second_path:
488 target=path
489 logger.warning("cluster.get_job_identifier runs unexpectedly. This should be fine but report this message if you have problem.")
490+ elif 'PY8_parallelization' in path:
491+ target = path.rsplit('/PY8_parallelization',1)[0]
492 else:
493 target = path
494
495@@ -2129,4 +2131,4 @@
496 'htcaas':HTCaaSCluster, 'htcaas2':HTCaaS2Cluster}
497
498 onecore=MultiCore(1) # create a thread to run simple bash job without having to
499- #fork the main process
500\ No newline at end of file
501+ #fork the main process
502
503=== modified file 'madgraph/various/lhe_parser.py'
504--- madgraph/various/lhe_parser.py 2017-03-04 20:26:57 +0000
505+++ madgraph/various/lhe_parser.py 2017-03-28 15:23:35 +0000
506@@ -152,8 +152,7 @@
507
508 class EventFile(object):
509 """A class to allow to read both gzip and not gzip file"""
510-
511- eventgroup = False
512+
513
514 def __new__(self, path, mode='r', *args, **opt):
515
516@@ -176,7 +175,7 @@
517 """open file and read the banner [if in read mode]"""
518
519 self.parsing = True # check if/when we need to parse the event.
520-
521+ self.eventgroup = False
522 try:
523 super(EventFile, self).__init__(path, mode, *args, **opt)
524 except IOError:
525@@ -281,7 +280,9 @@
526 text = ''
527 mode = 0
528 if mode:
529- text += line
530+ text += line
531+ if len(events) == 0:
532+ return self.next()
533 return events
534
535
536@@ -326,7 +327,9 @@
537 """
538 if isinstance(event, Event):
539 if self.eventgroup:
540- self.write('<eventgroup>\n%s\n<eventgroup>\n' % event)
541+ self.write('<eventgroup>\n%s\n</eventgroup>\n' % event)
542+ else:
543+ self.write(str(event))
544 elif isinstance(event, list):
545 if self.eventgroup:
546 self.write('<eventgroup>\n')
547@@ -728,6 +731,7 @@
548 def __init__(self, start_list=[], parse=True):
549 """if trunc_error is define here then this allow
550 to only read all the files twice and not three times."""
551+ self.eventgroup = False
552 self.files = []
553 self.parsefile = parse #if self.files is formatted or just the path
554 self.banner = ''
555@@ -1132,7 +1136,11 @@
556 status = 'tag'
557
558 if 'part' == status:
559- self.append(Particle(line, event=self))
560+ part = Particle(line, event=self)
561+ if part.E != 0:
562+ self.append(part)
563+ elif self.nexternal:
564+ self.nexternal-=1
565 else:
566 if '</event>' in line:
567 line = line.replace('</event>','',1)
568@@ -1245,53 +1253,51 @@
569 text = self.tag[start+8:stop]
570 self.nloweight = NLO_PARTIALWEIGHT(text, self, real_type=real_type)
571 return self.nloweight
572-
573+
574 def parse_lo_weight(self):
575 """ """
576+
577+
578 if hasattr(self, 'loweight'):
579 return self.loweight
580
581+ if not hasattr(Event, 'loweight_pattern'):
582+ Event.loweight_pattern = re.compile('''<rscale>\s*(?P<nqcd>\d+)\s+(?P<ren_scale>[\d.e+-]+)\s*</rscale>\s*\n\s*
583+ <asrwt>\s*(?P<asrwt>[\s\d.+-]+)\s*</asrwt>\s*\n\s*
584+ <pdfrwt\s+beam=["']?1["']?\>\s*(?P<beam1>[\s\d.e+-]*)\s*</pdfrwt>\s*\n\s*
585+ <pdfrwt\s+beam=["']?2["']?\>\s*(?P<beam2>[\s\d.e+-]*)\s*</pdfrwt>\s*\n\s*
586+ <totfact>\s*(?P<totfact>[\d.e+-]*)\s*</totfact>
587+ ''',re.X+re.I+re.M)
588+
589 start, stop = self.tag.find('<mgrwt>'), self.tag.find('</mgrwt>')
590
591 if start != -1 != stop :
592 text = self.tag[start+8:stop]
593-#<rscale> 3 0.29765919e+03</rscale>
594-#<asrwt>0</asrwt>
595-#<pdfrwt beam="1"> 1 21 0.15134321e+00 0.29765919e+03</pdfrwt>
596-#<pdfrwt beam="2"> 1 21 0.38683649e-01 0.29765919e+03</pdfrwt>
597-#<totfact> 0.17315115e+03</totfact>
598+
599+ info = Event.loweight_pattern.search(text)
600 self.loweight={}
601- for line in text.split('\n'):
602- line = line.replace('<', ' <').replace("'",'"')
603- if 'rscale' in line:
604- _, nqcd, scale, _ = line.split()
605- self.loweight['n_qcd'] = int(nqcd)
606- self.loweight['ren_scale'] = float(scale)
607- elif '<pdfrwt beam="1"' in line:
608- args = line.split()
609- self.loweight['n_pdfrw1'] = int(args[2])
610- npdf = self.loweight['n_pdfrw1']
611- self.loweight['pdf_pdg_code1'] = [int(i) for i in args[3:3+npdf]]
612- self.loweight['pdf_x1'] = [float(i) for i in args[3+npdf:3+2*npdf]]
613- self.loweight['pdf_q1'] = [float(i) for i in args[3+2*npdf:3+3*npdf]]
614- elif '<pdfrwt beam="2"' in line:
615- args = line.split()
616- self.loweight['n_pdfrw2'] = int(args[2])
617- npdf = self.loweight['n_pdfrw2']
618- self.loweight['pdf_pdg_code2'] = [int(i) for i in args[3:3+npdf]]
619- self.loweight['pdf_x2'] = [float(i) for i in args[3+npdf:3+2*npdf]]
620- self.loweight['pdf_q2'] = [float(i) for i in args[3+2*npdf:3+3*npdf]]
621- elif '<asrwt>' in line:
622- args = line.replace('>','> ').split()
623- nalps = int(args[1])
624- self.loweight['asrwt'] = [float(a) for a in args[2:2+nalps]]
625-
626- elif 'totfact' in line:
627- args = line.split()
628- self.loweight['tot_fact'] = float(args[1])
629+ self.loweight['n_qcd'] = int(info.group('nqcd'))
630+ self.loweight['ren_scale'] = float(info.group('ren_scale'))
631+ self.loweight['asrwt'] =[float(x) for x in info.group('asrwt').split()[1:]]
632+ self.loweight['tot_fact'] = float(info.group('totfact'))
633+
634+ args = info.group('beam1').split()
635+ npdf = int(args[0])
636+ self.loweight['n_pdfrw1'] = npdf
637+ self.loweight['pdf_pdg_code1'] = [int(i) for i in args[1:1+npdf]]
638+ self.loweight['pdf_x1'] = [float(i) for i in args[1+npdf:1+2*npdf]]
639+ self.loweight['pdf_q1'] = [float(i) for i in args[1+2*npdf:1+3*npdf]]
640+ args = info.group('beam2').split()
641+ npdf = int(args[0])
642+ self.loweight['n_pdfrw2'] = npdf
643+ self.loweight['pdf_pdg_code2'] = [int(i) for i in args[1:1+npdf]]
644+ self.loweight['pdf_x2'] = [float(i) for i in args[1+npdf:1+2*npdf]]
645+ self.loweight['pdf_q2'] = [float(i) for i in args[1+2*npdf:1+3*npdf]]
646+
647 else:
648 return None
649- return self.loweight
650+ return self.loweight
651+
652
653 def parse_matching_scale(self):
654 """Parse the line containing the starting scale for the shower"""
655@@ -2572,8 +2578,23 @@
656
657 if '__main__' == __name__:
658
659+ lhe = EventFile('unweighted_events.lhe.gz')
660+ #lhe.parsing = False
661+ start = time.time()
662+ for event in lhe:
663+ event.parse_lo_weight()
664+ print 'old method -> ', time.time()-start
665+ lhe = EventFile('unweighted_events.lhe.gz')
666+ #lhe.parsing = False
667+ start = time.time()
668+ for event in lhe:
669+ event.parse_lo_weight_test()
670+ print 'new method -> ', time.time()-start
671+
672+
673 # Example 1: adding some missing information to the event (here distance travelled)
674 if False:
675+ start = time
676 lhe = EventFile('unweighted_events.lhe.gz')
677 output = open('output_events.lhe', 'w')
678 #write the banner to the output file
679
680=== modified file 'madgraph/various/misc.py'
681--- madgraph/various/misc.py 2017-03-03 23:41:19 +0000
682+++ madgraph/various/misc.py 2017-03-28 15:23:35 +0000
683@@ -12,7 +12,6 @@
684 # For more information, visit madgraph.phys.ucl.ac.be and amcatnlo.web.cern.ch
685 #
686 ################################################################################
687-
688 """A set of functions performing routine administrative I/O tasks."""
689
690 import contextlib
691@@ -1589,6 +1588,112 @@
692
693 apple_notify = Applenotification()
694
695+class EasterEgg(object):
696+
697+ done_notification = False
698+ message_aprilfirst =\
699+ {'error': ['Be careful, a cat is eating a lot of fish today. This makes the code unstable.',
700+ 'Really, this sounds fishy.',
701+ 'A Higgs boson walks into a church. The priest says "We don\'t allow Higgs bosons in here." The Higgs boson replies, "But without me, how can you have mass?"',
702+ "Why does Heisenberg detest driving cars? Because, every time he looks at the speedometer he gets lost!",
703+ "May the mass times acceleration be with you.",
704+ "NOTE: This product may actually be nine-dimensional. If this is the case, functionality is not affected by the extra five dimensions.",
705+ "IMPORTANT: This product is composed of 100%% matter: It is the responsibility of the User to make sure that it does not come in contact with antimatter.",
706+ 'The fish are out of jokes. See you next year for more!'],
707+ 'loading': ['Hi %(user)s, You are Loading Madgraph. Please be patient, we are doing the work.'],
708+ 'quit': ['Thanks %(user)s for using MadGraph5_aMC@NLO, even on April 1st!']
709+ }
710+
711+ def __init__(self, msgtype):
712+
713+ try:
714+ now = time.localtime()
715+ date = now.tm_mday, now.tm_mon
716+ if date in [(1,4)]:
717+ if msgtype in EasterEgg.message_aprilfirst:
718+ choices = EasterEgg.message_aprilfirst[msgtype]
719+ if len(choices) == 0:
720+ return
721+ elif len(choices) == 1:
722+ msg = choices[0]
723+ else:
724+ import random
725+ msg = choices[random.randint(0,len(choices)-2)]
726+ EasterEgg.message_aprilfirst[msgtype].remove(msg)
727+
728+ else:
729+ return
730+ if MADEVENT:
731+ return
732+
733+ import os
734+ import pwd
735+ username =pwd.getpwuid( os.getuid() )[ 0 ]
736+ msg = msg % {'user': username}
737+ if sys.platform == "darwin":
738+ self.call_apple(msg)
739+ else:
740+ self.call_linux(msg)
741+ except Exception, error:
742+ sprint(error)
743+ pass
744+
745+ def __call__(self, msg):
746+ try:
747+ self.call_apple(msg)
748+ except:
749+ pass
750+
751+ def call_apple(self, msg):
752+
753+ #1. control if the volume is on or not
754+ p = subprocess.Popen("osascript -e 'get volume settings'", stdout=subprocess.PIPE, shell=True)
755+ output, _ = p.communicate()
756+ #output volume:25, input volume:71, alert volume:100, output muted:true
757+ info = dict([[a.strip() for a in l.split(':',1)] for l in output.strip().split(',')])
758+ muted = False
759+ if 'output muted' in info and info['output muted'] == 'true':
760+ muted = True
761+ elif 'output volume' in info and info['output volume'] == '0':
762+ muted = True
763+
764+ if muted:
765+ if not EasterEgg.done_notification:
766+ apple_notify('On April first','turn up your volume!')
767+ EasterEgg.done_notification = True
768+ else:
769+ os.system('say %s' % msg)
770+
771+
772+ def call_linux(self, msg):
773+ # check for fishing path
774+ fishPath = madgraph.MG5DIR+"/input/.cowgraph.cow"
775+ if os.path.exists(fishPath):
776+ fishPath = " -f " + fishPath
777+ #sprint("got fishPath: ",fishPath)
778+
779+ # check for fishing pole
780+ fishPole = which('cowthink')
781+ if not os.path.exists(fishPole):
782+ if os.path.exists(which('cowsay')):
783+ fishPole = which('cowsay')
784+ else:
785+ return
786+
787+ # go fishing
788+ fishCmd = fishPole + fishPath + " " + msg
789+ os.system(fishCmd)
790+
791+
792+if __debug__:
793+ try:
794+ import os
795+ import pwd
796+ username =pwd.getpwuid( os.getuid() )[ 0 ]
797+ if 'hirschi' in username or 'vryonidou' in username and __debug__:
798+ EasterEgg('loading')
799+ except:
800+ pass
801
802
803 def get_older_version(v1, v2):
804
805=== modified file 'tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_dxu_wp%V0_dxu_wp%loop_matrix.f'
806--- tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_dxu_wp%V0_dxu_wp%loop_matrix.f 2016-09-15 20:20:30 +0000
807+++ tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_dxu_wp%V0_dxu_wp%loop_matrix.f 2017-03-28 15:23:35 +0000
808@@ -1854,6 +1854,8 @@
809 C
810 C GLOBAL VARIABLES
811 C
812+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
813+ COMMON/CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
814 INTEGER I_LIB
815 COMMON/I_LIB/I_LIB
816 INCLUDE 'MadLoopParams.inc'
817@@ -1917,6 +1919,14 @@
818 ENDDO
819 ENDIF
820
821+C Make sure to hard-set to zero accuracies of coupling orders
822+C not included
823+ IF (K.NE.0) THEN
824+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
825+ ACC(K) = 0.0D0
826+ ENDIF
827+ ENDIF
828+
829 ENDDO
830
831 END
832
833=== modified file 'tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_udx_wp%V0_udx_wp%loop_matrix.f'
834--- tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_udx_wp%V0_udx_wp%loop_matrix.f 2016-09-15 20:20:30 +0000
835+++ tests/input_files/IOTestsComparison/IOExportFKSTest/test_ppw_fksall/%SubProcesses%P0_udx_wp%V0_udx_wp%loop_matrix.f 2017-03-28 15:23:35 +0000
836@@ -1854,6 +1854,8 @@
837 C
838 C GLOBAL VARIABLES
839 C
840+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
841+ COMMON/CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
842 INTEGER I_LIB
843 COMMON/I_LIB/I_LIB
844 INCLUDE 'MadLoopParams.inc'
845@@ -1917,6 +1919,14 @@
846 ENDDO
847 ENDIF
848
849+C Make sure to hard-set to zero accuracies of coupling orders
850+C not included
851+ IF (K.NE.0) THEN
852+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
853+ ACC(K) = 0.0D0
854+ ENDIF
855+ ENDIF
856+
857 ENDDO
858
859 END
860
861=== modified file 'tests/input_files/IOTestsComparison/MadLoop_output_from_the_interface/TIR_output/%ggttx_IOTest%SubProcesses%P0_gg_ttx%loop_matrix.f'
862--- tests/input_files/IOTestsComparison/MadLoop_output_from_the_interface/TIR_output/%ggttx_IOTest%SubProcesses%P0_gg_ttx%loop_matrix.f 2016-09-15 20:20:30 +0000
863+++ tests/input_files/IOTestsComparison/MadLoop_output_from_the_interface/TIR_output/%ggttx_IOTest%SubProcesses%P0_gg_ttx%loop_matrix.f 2017-03-28 15:23:35 +0000
864@@ -1857,6 +1857,8 @@
865 C
866 C GLOBAL VARIABLES
867 C
868+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
869+ COMMON/ML5_0_CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
870 INTEGER I_LIB
871 COMMON/ML5_0_I_LIB/I_LIB
872 INCLUDE 'MadLoopParams.inc'
873@@ -1920,6 +1922,14 @@
874 ENDDO
875 ENDIF
876
877+C Make sure to hard-set to zero accuracies of coupling orders
878+C not included
879+ IF (K.NE.0) THEN
880+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
881+ ACC(K) = 0.0D0
882+ ENDIF
883+ ENDIF
884+
885 ENDDO
886
887 END
888
889=== modified file 'tests/input_files/IOTestsComparison/TestCmdMatchBox/MatchBoxOutput/%TEST%SubProcesses%P1_uux_uux%loop_matrix.f'
890--- tests/input_files/IOTestsComparison/TestCmdMatchBox/MatchBoxOutput/%TEST%SubProcesses%P1_uux_uux%loop_matrix.f 2016-09-15 20:20:30 +0000
891+++ tests/input_files/IOTestsComparison/TestCmdMatchBox/MatchBoxOutput/%TEST%SubProcesses%P1_uux_uux%loop_matrix.f 2017-03-28 15:23:35 +0000
892@@ -1857,6 +1857,8 @@
893 C
894 C GLOBAL VARIABLES
895 C
896+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
897+ COMMON/MG5_1_CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
898 INTEGER I_LIB
899 COMMON/MG5_1_I_LIB/I_LIB
900 INCLUDE 'MadLoopParams.inc'
901@@ -1920,6 +1922,14 @@
902 ENDDO
903 ENDIF
904
905+C Make sure to hard-set to zero accuracies of coupling orders
906+C not included
907+ IF (K.NE.0) THEN
908+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
909+ ACC(K) = 0.0D0
910+ ENDIF
911+ ENDIF
912+
913 ENDDO
914
915 END
916
917=== modified file 'tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/dux_mumvmxg/loop_matrix.f'
918--- tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/dux_mumvmxg/loop_matrix.f 2016-09-15 20:20:30 +0000
919+++ tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/dux_mumvmxg/loop_matrix.f 2017-03-28 15:23:35 +0000
920@@ -1847,6 +1847,8 @@
921 C
922 C GLOBAL VARIABLES
923 C
924+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
925+ COMMON/ML5_0_CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
926 INTEGER I_LIB
927 COMMON/ML5_0_I_LIB/I_LIB
928 INCLUDE 'MadLoopParams.inc'
929@@ -1910,6 +1912,14 @@
930 ENDDO
931 ENDIF
932
933+C Make sure to hard-set to zero accuracies of coupling orders
934+C not included
935+ IF (K.NE.0) THEN
936+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
937+ ACC(K) = 0.0D0
938+ ENDIF
939+ ENDIF
940+
941 ENDDO
942
943 END
944
945=== modified file 'tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/gg_wmtbx/loop_matrix.f'
946--- tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/gg_wmtbx/loop_matrix.f 2016-09-15 20:20:30 +0000
947+++ tests/input_files/IOTestsComparison/long_ML_SMQCD_optimized/gg_wmtbx/loop_matrix.f 2017-03-28 15:23:35 +0000
948@@ -1847,6 +1847,8 @@
949 C
950 C GLOBAL VARIABLES
951 C
952+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
953+ COMMON/ML5_0_CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
954 INTEGER I_LIB
955 COMMON/ML5_0_I_LIB/I_LIB
956 INCLUDE 'MadLoopParams.inc'
957@@ -1910,6 +1912,14 @@
958 ENDDO
959 ENDIF
960
961+C Make sure to hard-set to zero accuracies of coupling orders
962+C not included
963+ IF (K.NE.0) THEN
964+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
965+ ACC(K) = 0.0D0
966+ ENDIF
967+ ENDIF
968+
969 ENDDO
970
971 END
972
973=== modified file 'tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/ddx_ttx/loop_matrix.f'
974--- tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/ddx_ttx/loop_matrix.f 2016-09-15 20:20:30 +0000
975+++ tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/ddx_ttx/loop_matrix.f 2017-03-28 15:23:35 +0000
976@@ -1847,6 +1847,8 @@
977 C
978 C GLOBAL VARIABLES
979 C
980+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
981+ COMMON/ML5_0_CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
982 INTEGER I_LIB
983 COMMON/ML5_0_I_LIB/I_LIB
984 INCLUDE 'MadLoopParams.inc'
985@@ -1910,6 +1912,14 @@
986 ENDDO
987 ENDIF
988
989+C Make sure to hard-set to zero accuracies of coupling orders
990+C not included
991+ IF (K.NE.0) THEN
992+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
993+ ACC(K) = 0.0D0
994+ ENDIF
995+ ENDIF
996+
997 ENDDO
998
999 END
1000
1001=== modified file 'tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/gg_ttx/loop_matrix.f'
1002--- tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/gg_ttx/loop_matrix.f 2016-09-15 20:20:30 +0000
1003+++ tests/input_files/IOTestsComparison/short_ML_SMQCD_optimized/gg_ttx/loop_matrix.f 2017-03-28 15:23:35 +0000
1004@@ -1847,6 +1847,8 @@
1005 C
1006 C GLOBAL VARIABLES
1007 C
1008+ LOGICAL CHOSEN_SO_CONFIGS(NSQUAREDSO)
1009+ COMMON/ML5_0_CHOSEN_LOOP_SQSO/CHOSEN_SO_CONFIGS
1010 INTEGER I_LIB
1011 COMMON/ML5_0_I_LIB/I_LIB
1012 INCLUDE 'MadLoopParams.inc'
1013@@ -1910,6 +1912,14 @@
1014 ENDDO
1015 ENDIF
1016
1017+C Make sure to hard-set to zero accuracies of coupling orders
1018+C not included
1019+ IF (K.NE.0) THEN
1020+ IF (.NOT.CHOSEN_SO_CONFIGS(K)) THEN
1021+ ACC(K) = 0.0D0
1022+ ENDIF
1023+ ENDIF
1024+
1025 ENDDO
1026
1027 END
1028
1029=== modified file 'tests/time_db'
1030--- tests/time_db 2016-09-06 16:03:35 +0000
1031+++ tests/time_db 2017-03-28 15:23:35 +0000
1032@@ -1,18 +1,16 @@
1033 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasDiagramTest testMethod=test_setget_diagram_exceptions>]> 0.000161170959473
1034-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_merge_iden_couplings>]> 0.0879130363464
1035+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_usermod.Test_ADDON_UFO testMethod=test_add_particle>]> 0.000631093978882
1036 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_invalid_operations_for_add>]> 0.0435810089111
1037 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestVertexPoint testMethod=test_remove_line>]> 8.89301300049e-05
1038 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_get_length>]> 0.000235080718994
1039 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.LegTest testMethod=test_values_for_prop>]> 0.0001220703125
1040 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_find_full_sm_decay_groups_advance>]> 2.03565192223
1041-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=testsumaddint>]> 0.0001060962677
1042 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayAmplitude testMethod=test_get_amplitude_givenfinal>]> 0.241197824478
1043 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_import_v4.ProcCardV4ReaderTest testMethod=test_line_creation>]> 0.0172848701477
1044 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorFactorTest testMethod=test_f_product>]> 0.00337600708008
1045 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_generate_helas_diagrams_uux_gepem>]> 0.0183539390564
1046 <__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_edit_card.TestEditCardCmd testMethod=test_autocompletion>]> 0.0173709392548
1047 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_amp.ColorSquareTest testMethod=test_color_matrix_multi_gluons>]> 0.251565933228
1048-<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_heft>]> 10.1859381199
1049 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_standalone_cpp_output>]> 2.42965912819
1050 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_save_model.IOSaveModel testMethod=test_error_interaction_save>]> 7.20024108887e-05
1051 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorFactorTest testMethod=test_sextet_products>]> 0.017058134079
1052@@ -30,6 +28,7 @@
1053 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_real_me_wrapper>]> 0.0157730579376
1054 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_helas_objects.testFKSHelasObjects testMethod=test_fks_helas_multi_process_ppwj>]> 9.92277693748
1055 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_drawing_eps.TestDrawingS_EPS testMethod=test_schedular>]> 0.184823036194
1056+<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSDiagramTag testMethod=test_diagram_tag_gg_ggg>]> 0.128249883652
1057 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_coloramps_file_EW>]> 0.00352311134338
1058 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testmultaddadd>]> 0.0001380443573
1059 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.InteractionTest testMethod=test_generating_dict_to_1>]> 0.00120282173157
1060@@ -44,6 +43,7 @@
1061 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_export_fks.IOExportFKSTest testMethod=testIO_test_tdecay_fksreal>]> 3.01861190796
1062 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_cpp.IOExportPythia8Test testMethod=test_write_process_cc_file>]> 0.0698401927948
1063 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_gg_hh_QCD>]> 0.00105404853821
1064+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_combine_legs_uux_uuxuux>]> 0.00294399261475
1065 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopDiagramGenerationTest testMethod=test_diagram_generation_gg_ng>]> 1.61963582039
1066 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_sm>]> 6.53617286682
1067 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_helas_call_writers.UFOHELASCallWriterTest testMethod=test_UFO_Python_helas_call_writer>]> 0.0118069648743
1068@@ -51,6 +51,7 @@
1069 <__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_cmd.TestValidCmd testMethod=test_InvalidCmd>]> 0.300333976746
1070 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_decay_chain_different_order3>]> 0.0537929534912
1071 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_change_number_format_python>]> 0.000648021697998
1072+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_generate_events_shower_scripts>]> 85.5048270226
1073 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_invalid_operations_for_generate>]> 0.143531084061
1074 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_exporters.IOTestMadLoopSquaredOrdersExport testMethod=testIO_ProcOutputIOTests>]> 5.7862739563
1075 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_part_antipart_after_output>]> 0.00266885757446
1076@@ -59,13 +60,16 @@
1077 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_epem_elpelmepem>]> 0.0915629863739
1078 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_aloha_FFVC>]> 0.0635468959808
1079 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayAmplitude testMethod=test_group_channels2amplitudes>]> 0.346367835999
1080+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_detect_special_parameters>]> 0.0848360061646
1081 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_file_writers.FortranWriterTest testMethod=test_write_fortran_error>]> 0.000140190124512
1082+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_launch_amcatnlo_name>]> 56.9865288734
1083 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopDiagramGenerationTest testMethod=test_diagram_generation_epem_ddx>]> 0.67814207077
1084 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.InteractionTest testMethod=test_interaction_list>]> 0.000237941741943
1085 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_export_fks.IOExportFKSTest testMethod=testIO_test_pptt_fks_loonly>]> 3.13605904579
1086 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DecayChainAmplitudeTest testMethod=test_decay_chain_pp_jj>]> 0.284907102585
1087 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ModelTest testMethod=test_get_particle>]> 0.000303030014038
1088 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestMultVariable testMethod=testmultmultint>]> 0.000181913375854
1089+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_generate_events_nlo_py6_stdhep>]> 90.5052030087
1090 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_matrix_element_fks_EW>]> 4.6968460083e-05
1091 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madevent.TestMECmdShell testMethod=test_e_e_collision>]> 36.1715919971
1092 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorFactorTest testMethod=test_f_d_product>]> 0.00230002403259
1093@@ -75,7 +79,7 @@
1094 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ModelTest testMethod=test_get_interaction>]> 0.000319004058838
1095 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_FKSMultiProcess_no_fsr>]> 0.15252494812
1096 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestLorentzObjectRepresentation testMethod=testtensorialproductlorentz>]> 0.00251793861389
1097-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_ppgogo_amcatnlo_nlo>]> 56.4734661579
1098+<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfHEFT testMethod=test_link_gghgg_gghg>]> 0.115737915039
1099 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_mg5_sm_23_p1>]> 502.181219816
1100 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestVariable testMethod=testmultvarvar>]> 6.98566436768e-05
1101 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_helas_objects.testFKSHelasObjects testMethod=test_fks_helas_process_init>]> 1.48353791237
1102@@ -96,7 +100,6 @@
1103 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_dxd_wpwm_QED>]> 0.00110411643982
1104 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_lhe_parser.TESTLHEParser testMethod=test_read_write_gzip>]> 0.054230928421
1105 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5MSSMQCD.ML5MSSMQCDTest testMethod=test_long_mssm_vs_stored_HCR_uux_t1t1xg_QCD>]> 167.044816017
1106-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_domain_intersection>]> 0.000416040420532
1107 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_madevent_triplet_diquarks>]> 8.50123596191
1108 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testsumaddadd>]> 0.000109910964966
1109 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestVariable testMethod=testmultvarint>]> 9.91821289062e-05
1110@@ -132,8 +135,10 @@
1111 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_fermionfactor_emep_emep>]> 0.00920605659485
1112 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.IOExportV4Test testMethod=test_export_group_decay_chains>]> 0.378351926804
1113 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_amp.ColorAmpTest testMethod=test_color_flow_string>]> 0.00816702842712
1114+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.IOExportV4Test testMethod=test_export_group_multidiagram_decay_chains>]> 0.431716918945
1115 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=test_part_spin32propagator>]> 0.0205278396606
1116 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_madweight.TestMadWeight testMethod=test_mw_wproduction>]> 11.4712297916
1117+<__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopEWDiagramGenerationTest testMethod=test_diagram_generation_uux_ga_EW>]> 15.2475500107
1118 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_find_full_sm_decay_groups>]> 5.82679080963
1119 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_decayBW_file_EW>]> 0.00243401527405
1120 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_drawing.TestLoopDrawer testMethod=test_NLO_draw_uux_uuxddx>]> 0.00144910812378
1121@@ -147,7 +152,6 @@
1122 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.DiagramTest testMethod=test_representation>]> 0.00391912460327
1123 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestLorentzObjectRepresentation testMethod=testeinsteinsum2>]> 0.00269603729248
1124 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestSomeObjectProperty testMethod=testEpsilonProperty>]> 0.0563979148865
1125-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_remove_couplings>]> 0.0872521400452
1126 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_get_den_factor>]> 0.00182509422302
1127 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_full_sm_aloha>]> 1.21198701859
1128 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_diquark_models.TestColorTripletModel testMethod=test_check_u_t_antitrip_g>]> 0.479106903076
1129@@ -160,10 +164,10 @@
1130 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_combine_legs_uux_ddx>]> 0.002357006073
1131 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_IOTest_examples.IOTestExampleWithSetUp testMethod=testIO_IOTestWrappedWithSetUP>]> 0.00829696655273
1132 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_exporters.IOExportMadLoopUnitTest testMethod=test_IOTests>]> 12.0391700268
1133-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=test_short_equality>]> 0.000420093536377
1134 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.TestIdentifyMETagFKS testMethod=test_identify_me_tag_qq_qg>]> 0.0854730606079
1135 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorStringTest testMethod=test_replace_indices>]> 0.000101089477539
1136 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_link_to_ufo.TestImportUFO testMethod=test_simple_import>]> 0.130714893341
1137+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_jet_veto_xsec>]> 49.1917068958
1138 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_import_v4.ProcCardV4ReaderTest testMethod=test_check_init>]> 0.0175278186798
1139 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_4fermion_models.TestSchannelModels testMethod=test_uu_to_tt_sch>]> 0.152179956436
1140 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_IOTest_examples.IOTest_SimpleExamples testMethod=testIO_MyCustomNameIOTestWrapped>]> 0.00549483299255
1141@@ -202,6 +206,7 @@
1142 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestBenchmarkModel testMethod=test_use_as_benchmark>]> 0.165615081787
1143 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_FKSMultiProcess_add>]> 0.199738025665
1144 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_combine_legs_gluons>]> 0.00331091880798
1145+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_generate_events_nlo_hw6_split>]> 56.6096589565
1146 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TestConfigFileCase testMethod=test_handling_dict_of_values>]> 0.000484943389893
1147 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_maxconfigs_EW>]> 0.004723072052
1148 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_helas_objects.testFKSHelasObjects testMethod=test_fks_helas_multi_process_ppz_loonly>]> 0.107840061188
1149@@ -231,7 +236,7 @@
1150 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_read_param_card>]> 2.07473993301
1151 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=testGammaAlgebraDefinition>]> 1.02981591225
1152 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_usermod.TestModUFO testMethod=test_write_orders>]> 0.00100803375244
1153-<__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_cmd.TestExtendedCmd testMethod=test_the_exit_from_child_cmd2>]> 0.000120162963867
1154+<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_gauge.GaugeComparator testMethod=test_short_cross_gauge>]> 115.8441329
1155 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_detect_identical_parameters>]> 0.0867898464203
1156 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestMultVariable testMethod=testequality>]> 0.000180006027222
1157 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_begin_end_wrong_input>]> 0.000144958496094
1158@@ -247,10 +252,12 @@
1159 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.LegTest testMethod=test_leg_list>]> 0.000253915786743
1160 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_wavefunctions testMethod=test_short_IR>]> 0.0010769367218
1161 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_notion_of_egality>]> 0.000488996505737
1162+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_split_evt_gen_zeroev>]> 54.9542040825
1163 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_cross_mssm1>]> 4.24386501312
1164 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_decay_chain_different_order1>]> 0.0381689071655
1165 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_configs_8fs>]> 0.104753017426
1166 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_amp.ColorAmpTest testMethod=test_colorize_uux_ggg>]> 0.0345070362091
1167+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_aloha_expr_FFFF3>]> 0.317361831665
1168 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.ExportV4IOTest testMethod=test_export_matrix_element_v4_standalone>]> 0.0386159420013
1169 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_pythonwriter>]> 0.0264060497284
1170 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_complete_decay_chain_process>]> 0.748803853989
1171@@ -264,7 +271,6 @@
1172 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestLorentzObjectRepresentation testMethod=testlistindices>]> 0.00608587265015
1173 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_drawing.TestLoopDrawer testMethod=test_NLO_draw_all_reconstructed_gg_gg>]> 0.0375239849091
1174 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_generate_events_lo_hw6_stdhep>]> 95.5102880001
1175-<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfSM testMethod=test_link_udxwpg_udxwp>]> 0.0118889808655
1176 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_drawing.TestLoopDrawer testMethod=test_NLO_draw_uux_guux>]> 0.0011990070343
1177 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_aloha_multiple_lorentz_and_symmetry>]> 0.0302782058716
1178 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DecayChainAmplitudeTest testMethod=test_setget_process_exceptions>]> 0.000777006149292
1179@@ -309,15 +315,13 @@
1180 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_pythonwriter_C>]> 0.0448169708252
1181 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfSM testMethod=test_link_ddxwpduxgg_gdxwpuxgg>]> 1.28763198853
1182 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_amcatnlo_from_file>]> 71.3001720905
1183-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.TestIdentifyMETag testMethod=test_identify_me_tag_qq_qqg>]> 0.144216060638
1184 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=test_short_factorization>]> 0.000678062438965
1185-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_pythonwriter_complex_mass_scheme>]> 0.095272064209
1186+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_decay_chain_process_overall_orders>]> 0.876585006714
1187 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_link_to_ufo.TestUFOExpressionParsers testMethod=test_parse_to_cpp>]> 0.0238230228424
1188 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_phi4_vertex>]> 0.000259876251221
1189 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ModelTest testMethod=test_dictionaries>]> 0.000564098358154
1190 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_multiparticle_stop_decay>]> 0.01522397995
1191 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_uuxddx_SplitOrders_vs_stored_ML5>]> 0.000785827636719
1192-<__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopDiagramGenerationTest testMethod=test_CT_vertices_generation_gg_gg>]> 1.53292918205
1193 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_define_level>]> 0.000642061233521
1194 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_get_fks_j_from_i_lines>]> 2.00525093079
1195 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ProcessDefinitionTest testMethod=test_setget_process_definition_exceptions>]> 0.000463008880615
1196@@ -328,8 +332,7 @@
1197 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestSomeObjectProperty testMethod=test_parity_for_epsilon>]> 0.000375032424927
1198 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_pdf_wrapper_EW>]> 0.0362520217896
1199 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_multiple_lorentz_structures_with_fermion_flow_clash>]> 0.034786939621
1200-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_decayBW_file>]> 0.00429511070251
1201-<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_gauge.GaugeComparator testMethod=test_short_cross_gauge>]> 115.8441329
1202+<__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_cmd.TestExtendedCmd testMethod=test_the_exit_from_child_cmd2>]> 0.000120162963867
1203 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_Cppwriter_C>]> 0.034628868103
1204 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_generate_events_nlo_hw6_split>]> 93.4157910347
1205 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testmultaddint>]> 0.000109910964966
1206@@ -372,7 +375,6 @@
1207 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_to_fks_leg_s>]> 0.00046181678772
1208 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_hasintersection>]> 0.00135803222656
1209 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_cross_sm3>]> 36.7921011448
1210-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_uux_zzz>]> 28.6060318947
1211 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_load_feynman>]> 0.416143894196
1212 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TestConfigFileCase testMethod=test_handling_list_of_values>]> 0.000817060470581
1213 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_check_eejjj_lo_lhapdf>]> 63.6095659733
1214@@ -394,6 +396,7 @@
1215 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayParticleList testMethod=test_convert>]> 0.000968933105469
1216 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_Channel testMethod=test_findchannels>]> 8.38987207413
1217 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_check_singletop_fastjet>]> 140.989368916
1218+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_4fermion_models.TestSchannelModels testMethod=test_find_symmetry_uu_tt_with_subprocess_group>]> 0.0958831310272
1219 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_domain_intersection_failure>]> 0.000155925750732
1220 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_mssm_subset_creation>]> 0.190835952759
1221 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_file_writers.FilePreprocessingTest testMethod=test_multiple_if_statement>]> 0.000859022140503
1222@@ -404,17 +407,20 @@
1223 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopEWDiagramGenerationTest testMethod=test_diagram_generation_aa_ttx_EW>]> 12.4905250072
1224 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_file_writers.CPPWriterTest testMethod=test_write_cplusplus_error>]> 0.000188827514648
1225 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_uux_uuxuux>]> 0.461228847504
1226+<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_find_fks_j_from_i>]> 0.0350108146667
1227 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_split_evt_gen>]> 82.7131781578
1228+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_epem_ttxg_QED>]> 0.00109791755676
1229 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_check_ppwy>]> 41.3791599274
1230 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_cpp.IOExportPythia8Test testMethod=test_pythia8_export_functions>]> 0.0397579669952
1231 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=test_short_Pslashproperty>]> 0.0238058567047
1232 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_aloha_expr_VVS1>]> 0.028205871582
1233-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.IOExportV4Test testMethod=test_export_group_multidiagram_decay_chains>]> 0.431716918945
1234+<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_heft>]> 10.1859381199
1235 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_find_color_links>]> 0.00164699554443
1236 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestMultVariable testMethod=testdealingwithpower3>]> 0.0140371322632
1237 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_hh_hh_QED>]> 0.00143194198608
1238 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_aloha_ZPZZ>]> 0.0636489391327
1239 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorFactorTest testMethod=test_gluons>]> 0.00796890258789
1240+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_uux_wpwmbbx>]> 61.837485075
1241 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_check_ppzjj>]> 100.601984024
1242 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_merge_identical_parameters>]> 0.0875990390778
1243 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_gauge.GaugeComparatorLoop testMethod=test_gauge_loop_p1>]> 427.859879017
1244@@ -476,7 +482,7 @@
1245 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madloop.TestCmdLoop testMethod=test_ML_check_timing_epem_ttx>]> 14.4036149979
1246 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_drawing.LoopDiagramDrawerTest testMethod=test_fuse_line>]> 0.00980591773987
1247 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=test_short_parity_for_epsilon>]> 0.000339031219482
1248-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testmultaddmult>]> 0.000133991241455
1249+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_histograms.IOHistogramTest testMethod=testIO_DJR_histograms>]> 6.34016513824
1250 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_den_factor_lines_EW>]> 2.82828497887
1251 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell1 testMethod=test_import_model>]> 0.106930971146
1252 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestLorentzObjectRepresentation testMethod=testgetrepresentation>]> 0.002366065979
1253@@ -489,7 +495,6 @@
1254 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_create_all_pickle>]> 40.2653810978
1255 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_ij_lines>]> 0.0146369934082
1256 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestVariable testMethod=testmultvarMult>]> 0.000117063522339
1257-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.IOExportV4Test testMethod=test_export_matrix_element_v4_madevent_nogroup>]> 0.109572172165
1258 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_find_reals>]> 0.0384328365326
1259 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.security_issue.TestSecurity testMethod=test_security_scan>]> 0.276997804642
1260 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_generate_helas_diagrams_ea_ae>]> 0.010556936264
1261@@ -506,7 +511,7 @@
1262 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_Fortranwriter_spin3half>]> 0.154531002045
1263 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_madweight.TestMadWeight testMethod=test_short_mw_wa_refine>]> 11.0905270576
1264 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_change_number_format_cpp>]> 0.000547170639038
1265-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=testIO_test_pptt_fksreal>]> 13.9149849415
1266+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testmultaddvar_legacy>]> 0.00015115737915
1267 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_nfksconfigs_file>]> 0.0158369541168
1268 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ModelTest testMethod=test_ref_dict_multiple_interactions>]> 0.000741004943848
1269 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestVariable testMethod=test_short_power>]> 0.000148057937622
1270@@ -516,9 +521,9 @@
1271 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=testsummultmul>]> 0.000133991241455
1272 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_AbstractModel testMethod=test_get_particles_type>]> 0.128159046173
1273 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_amcantlo_script>]> 46.4756779671
1274-<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_sqso>]> 4.5599489212
1275 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.ExportV4IOTest testMethod=test_coeff_string>]> 0.028568983078
1276 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_ufo_parsers.UFOParserTest testMethod=test_parse_fortran_IfElseStruct_MP>]> 0.0654561519623
1277+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasAmplitudeTest testMethod=test_setget_amplitude_exceptions>]> 0.000211000442505
1278 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayParticle testMethod=test_values_for_prop>]> 0.110687971115
1279 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=testmultaddint>]> 0.000126123428345
1280 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_get_base_amplitude>]> 0.140361070633
1281@@ -532,14 +537,14 @@
1282 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_uu_susug>]> 0.0533299446106
1283 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayParticle testMethod=test_reset_decaywidth>]> 0.13299202919
1284 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_python_routine_are_exec>]> 0.00516891479492
1285-<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSDiagramTag testMethod=test_diagram_tag_gg_ggg>]> 0.128249883652
1286+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_domain_intersection>]> 0.000416040420532
1287 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_histograms.IOTest_Histogram testMethod=testIO_gnuplot_histo_output>]> 0.224948883057
1288 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_aloha_expr_FFFF3>]> 0.325031042099
1289 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayParticle testMethod=test_get_max_level>]> 0.132587909698
1290-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_fermion_flow>]> 0.00178098678589
1291+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestVertexPoint testMethod=test_isexternal>]> 0.000101089477539
1292 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_shower_card.TestShowerCard testMethod=test_shower_card_hwpp>]> 0.000180959701538
1293 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_Cwriter_complex_mass_scheme>]> 0.0237638950348
1294-<__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopEWDiagramGenerationTest testMethod=test_diagram_generation_uux_ga_EW>]> 15.2475500107
1295+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.IOExportV4Test testMethod=test_export_matrix_element_v4_madevent_nogroup>]> 0.109572172165
1296 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_import_v4.IOImportV4Test testMethod=test_read_particles>]> 0.000508069992065
1297 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ModelTest2 testMethod=test_change_to_complex_mass_scheme>]> 0.152688980103
1298 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madloop.TestCmdLoop testMethod=test_ML_check_cms_aem_emvevex>]> 0.289308071136
1299@@ -561,7 +566,7 @@
1300 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestMultVariable testMethod=testsummultadd>]> 0.000198841094971
1301 <__main__.TestSuiteModified tests=[<tests.unit_tests.madevent.test_combine_runs.TestCombineRuns testMethod=test_get_fortran_str>]> 0.000144004821777
1302 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_udx_htbx>]> 12.6998720169
1303-<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfHEFT testMethod=test_link_gghgg_gghg>]> 0.115737915039
1304+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_ppgogo_amcatnlo_nlo>]> 56.4734661579
1305 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_WWWW>]> 0.0192968845367
1306 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_change_number_format_cpp>]> 0.000536918640137
1307 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=test_equality>]> 0.000424861907959
1308@@ -596,7 +601,7 @@
1309 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_ufo_parsers.UFOParserTest testMethod=test_parse_info_str_error>]> 0.0325899124146
1310 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestLorentzObjectRepresentation testMethod=testEinsteinsum>]> 0.00415802001953
1311 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_histograms.TestHistograms testMethod=test_histograms_operations>]> 0.181525945663
1312-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_born_fks_EW>]> 4.79221343994e-05
1313+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=testexpand>]> 0.00219416618347
1314 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_cross_sqso1>]> 0.000553131103516
1315 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestLorentzObjectRepresentation testMethod=testtensorialproductspin>]> 0.070338010788
1316 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_generate_events_shower_scripts>]> 107.744693995
1317@@ -619,7 +624,7 @@
1318 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ModelTest testMethod=test_model_initialization>]> 0.000297069549561
1319 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_has_symmetries>]> 0.000720024108887
1320 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestLorentzObjectRepresentation testMethod=testlistindices>]> 0.00581979751587
1321-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_4fermion_models.TestSchannelModels testMethod=test_find_symmetry_uu_tt_with_subprocess_group>]> 0.0958831310272
1322+<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_output_standalone_directory>]> 8.03073692322
1323 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_ufo_aloha>]> 1.4953649044
1324 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_generate_events_lo_py6_stdhep>]> 107.259223938
1325 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayAmplitude testMethod=test_decaytable_string>]> 0.357012033463
1326@@ -630,7 +635,6 @@
1327 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_check_eejjj_lo_lhapdf>]> 53.6706390381
1328 <__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_cmd.TestExtendedCmd testMethod=test_the_exit_from_child_cmd>]> 0.000255107879639
1329 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=test_short_other>]> 4.91142272949e-05
1330-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=test_short_power>]> 0.000319957733154
1331 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_generate_events_lo_hw6_set>]> 45.5628159046
1332 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSimplify testMethod=testsimplifyMultLorentz>]> 0.0103709697723
1333 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestVariable testMethod=testmultvarAdd>]> 0.000159025192261
1334@@ -641,6 +645,7 @@
1335 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_find_pert_particles_interactions>]> 0.000373125076294
1336 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_diagram_generation_diagrams_ddx_uuxg>]> 0.0211179256439
1337 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_inverse_part_antipart>]> 0.000123977661133
1338+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_find_mssm_decay_groups_modified_mssm_general>]> 8.70347595215
1339 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_dxd_zzg>]> 32.597039938
1340 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestSomeObjectProperty testMethod=testCAlgebraDefinition>]> 0.0381119251251
1341 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfSM testMethod=test_link_uuddg_uugg>]> 0.0265622138977
1342@@ -655,6 +660,7 @@
1343 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_helas_call_writers.UFOHELASCALLWriterComplexMass testMethod=test_UFO_Python_helas_call_writer>]> 0.197067022324
1344 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_ML5EW_gg_ttxh_QCD>]> 0.000695943832397
1345 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_shower_card.TestShowerCard testMethod=test_shower_card_hwpp_analyse>]> 0.000179052352905
1346+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_write_param.TestParamWrittingWithRestrict testMethod=test_define_not_dep_param>]> 0.0751221179962
1347 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_FKSProcess_gggg>]> 0.369121789932
1348 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestSomeObjectProperty testMethod=test_complex_equality>]> 0.453453063965
1349 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestLorentzObjectRepresentation testMethod=testEinsteinsum>]> 0.00298190116882
1350@@ -668,12 +674,12 @@
1351 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_helas_diagrams_gg_gogo_go_tt1x_t_wpb>]> 0.0463981628418
1352 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayParticle testMethod=test_find_vertexlist>]> 0.113565921783
1353 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_calculate_xsect_script>]> 30.6620099545
1354-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_uux_ga_QCD_QED>]> 0.00132417678833
1355+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_heft_multiparticle_pp_hnj>]> 0.326533079147
1356 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_save_load>]> 1.68547606468
1357 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=testemptyisFalse>]> 6.60419464111e-05
1358 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_ea_ae>]> 0.0131080150604
1359 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.IOExportV4Test testMethod=test_coeff_string>]> 0.0342230796814
1360-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_histograms.IOHistogramTest testMethod=testIO_DJR_histograms>]> 6.34016513824
1361+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testmultaddmult>]> 0.000133991241455
1362 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_mg5_sm_13>]> 41.2373769283
1363 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML4_gg_attx>]> 40.257420063
1364 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_helas_call_writers.HelasModelTest testMethod=test_setget_helas_model_error>]> 0.00156712532043
1365@@ -684,14 +690,16 @@
1366 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfHEFT testMethod=test_sort_proc>]> 0.0744910240173
1367 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_mssm>]> 11.2124068737
1368 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.InteractionTest testMethod=test_setget_interaction_exceptions>]> 0.000231027603149
1369+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_matrix_multistage_decay_chain_process>]> 0.127142906189
1370+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_rambo.test_wavefunctions testMethod=test_I>]> 0.000235080718994
1371 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_launch_amcatnlo_name>]> 68.1794371605
1372 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TestConfigFileCase testMethod=test_auto_handling>]> 0.000450134277344
1373 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_uux_za_QED>]> 0.0014591217041
1374 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_file_writers.FilePreprocessingTest testMethod=test_single_if_statement>]> 0.000323057174683
1375-<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_output_files.IOExportMadLoopAcceptanceTest testMethod=test_IOTests>]> 22.2488629818
1376+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=testConjugateOperator>]> 0.0876400470734
1377 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=test_short_replace>]> 0.000373125076294
1378 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.IOExportV4IOTest testMethod=testIO_export_matrix_element_v4_madevent_group>]> 0.124577045441
1379-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_uux_wpwmbbx>]> 61.837485075
1380+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.TestIdentifyMETag testMethod=test_identify_me_tag_qq_qqg>]> 0.144216060638
1381 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_python.IOExportPythonTest testMethod=test_export_matrix_element_python_madevent_group>]> 0.0395710468292
1382 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_multiparticle_pp_nj_with_required_s_channel>]> 0.195080041885
1383 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.test_aloha_creation testMethod=test_aloha_FFT2>]> 0.0807220935822
1384@@ -711,7 +719,7 @@
1385 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestLorentzObjectRepresentation testMethod=test_split>]> 0.00737619400024
1386 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_pdf_file_EW>]> 5.29289245605e-05
1387 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=testmultaddvar>]> 0.000127792358398
1388-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_setget_process_exceptions>]> 0.000932931900024
1389+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_check_param_card.TestParamCardRule testMethod=test_write>]> 7.00950622559e-05
1390 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorObjectTest testMethod=test_delta6_simplify>]> 8.51154327393e-05
1391 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestVertexPoint testMethod=test_def_position>]> 0.000124931335449
1392 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TestConfigFileCase testMethod=test_sum_object>]> 0.000125885009766
1393@@ -725,21 +733,20 @@
1394 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_find_vertexlist>]> 1.92569303513
1395 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.VertexTest testMethod=test_values_for_prop>]> 8.10623168945e-05
1396 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_gg_zccx>]> 41.9109280109
1397-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testsumaddvar>]> 0.000104904174805
1398 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_drawing.TestLoopDrawer testMethod=test_loop_convert_diagram>]> 0.000792026519775
1399 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_configs_ug_ttxz>]> 0.11712884903
1400-<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_reweight.TestMECmdRWGT testMethod=test_nlo_reweighting>]> 15.5831661224
1401+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=test_short_equality>]> 0.000420093536377
1402 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testsumaddint>]> 9.20295715332e-05
1403 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestSimplify testMethod=testsimplifyMultLorentz>]> 0.0104720592499
1404 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_helas_objects.testFKSHelasObjects testMethod=test_fks_helas_real_process_init>]> 0.16713809967
1405-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_epem_ttxg_QED>]> 0.00109791755676
1406+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.AlohaFortranWriterTest testMethod=test_header>]> 0.0467920303345
1407 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_generate_loop.TestGenerateLoopFKS testMethod=test_generate_virtuals_helas_matrix_element>]> 2.81991004944
1408 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=testequality>]> 0.000127077102661
1409 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madloop.TestCmdMatchBox testMethod=testIO_MatchBoxOutput>]> 3.16356706619
1410 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_get_fks_j_from_i_lines_EW>]> 7.70092010498e-05
1411 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.ExportV4IOTest testMethod=test_replace_make_opt_f_compiler>]> 0.0348589420319
1412 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_forbidden_onshell_s_channel_uux_uuxng>]> 0.0812060832977
1413-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_aloha_expr_FFFF3>]> 0.317361831665
1414+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_helas_call_writers.UFOHELASCallWriterTest testMethod=test_UFO_CPP_helas_call_writer>]> 0.0117120742798
1415 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_check_singletop_fastjet>]> 152.502398014
1416 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_majorana_decay_chain_process>]> 0.136888980865
1417 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madevent.TestMECmdShell testMethod=test_madevent_ptj_bias>]> 75.3821110725
1418@@ -749,17 +756,18 @@
1419 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestLorentzObjectRepresentation testMethod=testgetrepresentation>]> 0.00228095054626
1420 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_mg5_sm_23_p3>]> 27.4707448483
1421 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_matrix_element_fks>]> 0.0163419246674
1422-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_Fortranwriter_spin3half>]> 0.141327142715
1423+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=testsumaddint>]> 0.0001060962677
1424 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSDiagramTag testMethod=test_diagram_tag_uu_uug>]> 0.0557870864868
1425-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_equal_decay_chains>]> 0.134434938431
1426 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=test_short_projector>]> 0.00699806213379
1427 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madloop.TestCmdLoop testMethod=test_ML_check_full_epem_ttx>]> 42.7599339485
1428 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestVariable testMethod=testsumvarint>]> 6.48498535156e-05
1429+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_madweight.TestMadWeight testMethod=test_short_mw_tt_full_lept>]> 29.0376198292
1430 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfSM testMethod=test_link_duxhuduxux_guxhuuxux>]> 1.03614902496
1431 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DecayChainAmplitudeTest testMethod=test_forbidden_s_channel_decay_chain>]> 0.0207369327545
1432 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_sqso_ddx_ddx_WEIGHTEDgt6>]> 20.8691658974
1433 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_vevex_epem_QED>]> 0.000979900360107
1434 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_ufo_helas_diagrams_gg_gogo>]> 0.0135381221771
1435+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_generate_events_nlo_hw6_stdhep>]> 82.7918329239
1436 <__main__.TestSuiteModified tests=[<tests.unit_tests.madweight.test_export_v4.TestMadWeight testMethod=testIO_modification_to_cuts>]> 0.00752091407776
1437 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=test_short_factorization3>]> 0.000173091888428
1438 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=testsummulvar>]> 0.000131845474243
1439@@ -787,12 +795,13 @@
1440 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_cmd.TestInstall testMethod=test_configuration_file>]> 0.000146865844727
1441 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=testIO_test_tdecay_fksreal>]> 3.07783889771
1442 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_get_conjugate_index_majoranas>]> 0.00603890419006
1443+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_generate_events_nlo_py6pt_stdhep>]> 89.1206760406
1444 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestLorentzObjectRepresentation testMethod=test_short_split>]> 0.00639200210571
1445 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_save_model.IOSaveModel testMethod=test_interaction_save>]> 0.000285148620605
1446 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_ppgogo_amcatnlo>]> 252.850306988
1447 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=testmultadd_legacy>]> 0.000187873840332
1448 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_find_optimal_order>]> 0.190226793289
1449-<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_find_fks_j_from_i>]> 0.0350108146667
1450+<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_output_files.IOExportMadLoopAcceptanceTest testMethod=test_IOTests>]> 22.2488629818
1451 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_fortranwriter_C>]> 0.0298249721527
1452 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_aloha_get_rank>]> 0.103627204895
1453 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_uux_gepem_no_optimization>]> 0.0196721553802
1454@@ -832,6 +841,7 @@
1455 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_helas_multiprocess_pp_nj>]> 0.281494140625
1456 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopDiagramFDStructTest testMethod=test_gg_5gglgl_bubble_tag>]> 0.00427198410034
1457 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_python_routine_are_exec>]> 0.00470900535583
1458+<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madloop.TestCmdLoop testMethod=test_ML_check_cms_al_lvlvlx_LO>]> 0.423834085464
1459 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_import_banner_command>]> 1.45100903511
1460 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_duplicate_lorentz_structures>]> 0.0115809440613
1461 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestLorentzObjectRepresentation testMethod=test_sum_with4ind>]> 0.0239880084991
1462@@ -845,11 +855,11 @@
1463 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML4_dxd_zgg>]> 36.6928138733
1464 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_helas_objects.LoopHelasMatrixElementTest testMethod=test_get_aloha_input>]> 0.216245174408
1465 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_ppgogo_amcatnlo>]> 77.5487518311
1466-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_decay_chain_process_overall_orders>]> 0.876585006714
1467+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_pythonwriter_complex_mass_scheme>]> 0.095272064209
1468 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_aloha_multiple_lorentz>]> 0.000393867492676
1469 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_gauge.GaugeComparatorLoop testMethod=test_short_gauge_loop>]> 37.5182161331
1470 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_helas_objects.testFKSHelasObjects testMethod=test_get_fks_info_list>]> 0.993493080139
1471-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestVertexPoint testMethod=test_isexternal>]> 0.000101089477539
1472+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=testIO_test_pptt_fksreal>]> 13.9149849415
1473 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_launch_amcatnlo_name>]> 49.5285630226
1474 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_change_number_format_fortran>]> 0.000572919845581
1475 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madevent.TestMEfromfile testMethod=test_decay_width_nlo_model>]> 14.2313911915
1476@@ -865,7 +875,7 @@
1477 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_dxd_zgg>]> 39.1508870125
1478 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_FKSMultiProcess>]> 0.970643043518
1479 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TESTMadLoopParam testMethod=test_modifparameter>]> 0.000886917114258
1480-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_matrix_multistage_decay_chain_process>]> 0.127142906189
1481+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=test_short_power>]> 0.000319957733154
1482 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_get_s_and_t_channels.TestGetSandTchannels testMethod=test_get_s_and_t_ub_tdg>]> 0.11679315567
1483 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_diquark_models.TestColorTripletModel testMethod=test_ut_to_antitrip_g>]> 0.187545776367
1484 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_wpwm_hh_QED>]> 0.00102114677429
1485@@ -905,14 +915,14 @@
1486 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_gauge.GaugeComparator testMethod=test_cross_gauge_p2>]> 26775.4375861
1487 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_base.TestFKSProcess testMethod=test_FKSMultiProcess_no_isr>]> 0.035425901413
1488 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_uux_uux_QCD_QED>]> 0.00138115882874
1489-<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_mg5_sm_23_p2>]> 750.973557949
1490+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_decayBW_file>]> 0.00429511070251
1491 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_generate_events_lo_hw6_stdhep>]> 10.500576973
1492 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_shower_card.TestShowerCard testMethod=test_shower_card_py8_analyse>]> 0.000602960586548
1493 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=test_spin2propagator3>]> 0.0653259754181
1494 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfSM testMethod=test_link_butdg_butd>]> 0.0965809822083
1495-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_madweight.TestMadWeight testMethod=test_short_mw_tt_full_lept>]> 29.0376198292
1496+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_fermion_flow>]> 0.00178098678589
1497 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_IdentifyHelasTag testMethod=test_helas_comparison>]> 0.225214958191
1498-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_write_param.TestParamWrittingWithRestrict testMethod=test_define_not_dep_param>]> 0.0751221179962
1499+<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_mg5_sm_23_p2>]> 750.973557949
1500 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_usermod.Test_ADDON_UFO testMethod=test_interaction>]> 0.000797033309937
1501 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_aloha_get_name>]> 0.0285120010376
1502 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_b_sf_fks>]> 2.02799201012
1503@@ -920,12 +930,12 @@
1504 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_representation>]> 0.00421714782715
1505 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_leshouche_info_file>]> 0.0922110080719
1506 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestNFlav testMethod=test_get_nflav_sm>]> 0.0441629886627
1507-<__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_madevent.TestMadEventCmd testMethod=test_help_category>]> 0.00062894821167
1508+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_particles_type>]> 1.96593403816
1509 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopDiagramGenerationTest testMethod=test_diagram_generation_uux_ga>]> 1.02916789055
1510 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasWavefunctionTest testMethod=test_setget_wavefunction_exceptions>]> 0.000231027603149
1511 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_check_generate_optimize>]> 0.301462173462
1512 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML4_gg_zttx>]> 42.488312006
1513-<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_read_madgraph4_proc_card>]> 0.877720832825
1514+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.InteractionTest testMethod=test_values_for_prop>]> 0.000379085540771
1515 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_dxd_zz_QCD>]> 0.0014021396637
1516 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_aloha_expr_FFFF>]> 0.00574803352356
1517 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_process_checks.TestLorentzInvariance testMethod=test_boost_momenta_gluino>]> 5.42973899841
1518@@ -939,22 +949,22 @@
1519 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_drawing.TestLoopDrawer testMethod=test_flipping>]> 0.0031681060791
1520 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ProcessTest testMethod=test_nice_string>]> 0.000377178192139
1521 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_check_generate_eventsnlo_py6pt_fsr>]> 16.2141349316
1522-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_check_param_card.TestParamCardRule testMethod=test_write>]> 7.00950622559e-05
1523-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasAmplitudeTest testMethod=test_setget_amplitude_exceptions>]> 0.000211000442505
1524+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_setget_process_exceptions>]> 0.000932931900024
1525+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_merge_iden_couplings>]> 0.0879130363464
1526 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAlohaWriter testMethod=test_aloha_MP_mode>]> 0.0349721908569
1527 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=test_short_spin32propagator>]> 0.208134174347
1528-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_find_mssm_decay_groups_modified_mssm_general>]> 8.70347595215
1529+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=testmultmultint>]> 0.000134944915771
1530 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_configs_file_born_EW>]> 5.07831573486e-05
1531 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestVariable testMethod=testmultvarAdd>]> 0.00016713142395
1532 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_short_calculate_xsect_script>]> 58.7567720413
1533-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.MultiLegTest testMethod=test_setget_multi_leg_correct>]> 6.60419464111e-05
1534+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_usermod.Test_ADDON_UFO testMethod=test_identify_particle>]> 0.0015971660614
1535 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_complicated_majorana_process>]> 0.110619068146
1536 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_uxu_wpwm_QED>]> 0.000982999801636
1537 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=testdealingwithpower1>]> 0.000165939331055
1538 <__main__.TestSuiteModified tests=[<tests.unit_tests.madweight.test_permutation.TestPermutation testMethod=test_permutation_from_id>]> 0.0379128456116
1539 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_diagram_generation_identical_interactions>]> 0.0405609607697
1540 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanLine testMethod=test_line_orientation>]> 0.000136137008667
1541-<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madevent.TestMECmdShell testMethod=test_width_computation>]> 13.0126650333
1542+<__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_madevent.TestMadEventCmd testMethod=test_help_category>]> 0.00062894821167
1543 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TestPythia8Card testMethod=test_PY8Card_with_subruns>]> 0.0171630382538
1544 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_gg_attx>]> 34.2396230698
1545 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_shower_card.TestShowerCard testMethod=test_shower_card_py8>]> 0.000524997711182
1546@@ -965,14 +975,13 @@
1547 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_group_subprocs.SubProcessGroupTest testMethod=test_special_group_decay_chain>]> 0.162132024765
1548 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_invalid_operations_for_output>]> 0.0474369525909
1549 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=test_spin2propagator2>]> 0.152077913284
1550-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_usermod.Test_ADDON_UFO testMethod=test_add_particle>]> 0.000631093978882
1551+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_Fortranwriter_spin3half>]> 0.141327142715
1552 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=test_short_spin2propagator3>]> 0.0580358505249
1553 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_decay_chain_different_pdgs>]> 0.0846738815308
1554 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=testsumaddmult>]> 0.000146865844727
1555 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_generate_events_lo_hwpp_set>]> 29.2329268456
1556-<__main__.TestSuiteModified tests=[<tests.unit_tests.madspin.test_madspin.TestBanner testMethod=test_extract_info>]> 0.00151705741882
1557 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_AbstractModel testMethod=test_add_ab_particle>]> 0.127122163773
1558-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.InteractionTest testMethod=test_values_for_prop>]> 0.000379085540771
1559+<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_read_madgraph4_proc_card>]> 0.877720832825
1560 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ParticleTest testMethod=test_setget_particle_correct>]> 0.000205039978027
1561 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=testscalarmanipulation>]> 0.000520944595337
1562 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.InteractionTest testMethod=test_representation>]> 0.000245809555054
1563@@ -1011,7 +1020,6 @@
1564 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.AmplitudeTest testMethod=test_setget_amplitude_correct>]> 0.00019097328186
1565 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_uux_wpwm_QED>]> 0.0013861656189
1566 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorObjectTest testMethod=test_T_pair_simplify>]> 0.000263929367065
1567-<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_output_files.IOExportMadLoopAcceptanceTest testMethod=testIO_ProcOutputIOTests>]> 28.318707943
1568 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_helas_objects.testFKSHelasObjects testMethod=test_fks_ppzz_in_RS>]> 5.40944194794
1569 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_lh_order_EW>]> 0.000322818756104
1570 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestVariable testMethod=testsumvarint>]> 8.79764556885e-05
1571@@ -1020,7 +1028,7 @@
1572 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_diagram_generation_gluons>]> 0.0548150539398
1573 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_complex_mass_SA>]> 1.51796483994
1574 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestLorentzObjectRepresentation testMethod=test_short_sumofLorentzObj>]> 0.00596499443054
1575-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_particles_type>]> 1.96593403816
1576+<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks_EW.IOExportFKSEWTest testMethod=test_write_born_fks_EW>]> 4.79221343994e-05
1577 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DecayChainAmplitudeTest testMethod=test_unused_decays_in_decay_chain_pp_jj>]> 0.199378967285
1578 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=test_spin32propagator>]> 0.232930898666
1579 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_find_splittings>]> 0.0126750469208
1580@@ -1035,7 +1043,7 @@
1581 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestImportUFO testMethod=test_expansion_order>]> 0.0448379516602
1582 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ModelTest testMethod=test_setget_model_correct>]> 0.00034499168396
1583 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML4_ddx_wpwmg>]> 26.4144010544
1584-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testmultaddvar_legacy>]> 0.00015115737915
1585+<__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopDiagramGenerationTest testMethod=test_CT_vertices_generation_gg_gg>]> 1.53292918205
1586 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TestMadLoopParam testMethod=test_writeMLparam>]> 0.00169992446899
1587 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_WWWWA>]> 0.132983922958
1588 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.DiagramTest testMethod=test_setget_diagram_exceptions>]> 0.000128984451294
1589@@ -1046,6 +1054,7 @@
1590 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_diagram_generation.LoopEWDiagramGenerationTest testMethod=test_diagram_generation_hh_hhh_EW>]> 179.770503998
1591 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_multi_amp_majorana_process>]> 0.00927495956421
1592 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_helas_objects.LoopHelasMatrixElementTest testMethod=test_helas_diagrams_gg_ggg>]> 0.551722049713
1593+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_IOTest_examples.IOTestExampleWithSetUp testMethod=testIO_MyHandwrittenIOTest>]> 0.000919103622437
1594 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestVariable testMethod=testmultvarMult>]> 8.82148742676e-05
1595 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.MultiLegTest testMethod=test_values_for_prop>]> 0.0001060962677
1596 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_squared_orders_constraints_uux_ddxuux>]> 0.00237202644348
1597@@ -1060,6 +1069,7 @@
1598 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestVertexPoint testMethod=test_add_line>]> 0.000107049942017
1599 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_calculate_xsect_lo>]> 53.5439140797
1600 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_split_evt_gen>]> 6.80820512772
1601+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_lhe_parser.TESTLHEParser testMethod=test_parsing_lo_weight>]> 0.00320196151733
1602 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayModel testMethod=test_find_mssm_decay_groups_general>]> 7.73995018005
1603 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_algebra.ColorObjectTest testMethod=test_Tr_pair_simplify>]> 0.000292062759399
1604 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_configs_file_born>]> 0.00420498847961
1605@@ -1089,28 +1099,28 @@
1606 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_rambo.test_rambo testMethod=test_massless>]> 0.000313997268677
1607 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_insert_legs>]> 0.000980854034424
1608 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.UFO_model_to_mg4_Test testMethod=test_case_sensitive>]> 0.122036933899
1609-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_combine_legs_uux_uuxuux>]> 0.00294399261475
1610+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_creation_from_cmd>]> 0.0318400859833
1611 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_AbstractModel testMethod=test_help_generate_ab_amplitude>]> 0.233986139297
1612-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_gg_hhttx>]> 141.341906071
1613+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMultiProcessTest testMethod=test_equal_decay_chains>]> 0.134434938431
1614 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.AmplitudeTest testMethod=test_setget_amplitude_exceptions>]> 0.00019907951355
1615 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestMultVariable testMethod=testmultmultmult>]> 0.000176906585693
1616 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_amp.ColorSquareTest testMethod=test_helper_lcm_functions>]> 0.000735998153687
1617 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=testdealingwithpower3>]> 0.0128040313721
1618-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.AlohaFortranWriterTest testMethod=test_header>]> 0.0467920303345
1619+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_uux_zzz>]> 28.6060318947
1620 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSDiagramTag testMethod=test_reorder_permutation>]> 5.41210174561e-05
1621 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_detect_zero_iden_couplings>]> 0.08682513237
1622 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=testexpand>]> 0.00191402435303
1623 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.DiagramGenerationTest testMethod=test_diagram_generation_nodiag>]> 0.00244688987732
1624 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=test_obj_are_not_modified>]> 0.000224113464355
1625 <__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_cmd.TestValidCmd testMethod=test_check_generate>]> 0.00097393989563
1626-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_usermod.Test_ADDON_UFO testMethod=test_identify_particle>]> 0.0015971660614
1627+<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.MultiLegTest testMethod=test_setget_multi_leg_correct>]> 6.60419464111e-05
1628 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_aloha_symmetries_and_get_info>]> 0.212943077087
1629 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_find_particles_interactions_no_ghosts>]> 0.457952976227
1630-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_diagram_generation.MultiProcessTest testMethod=test_heft_multiparticle_pp_hnj>]> 0.326533079147
1631+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_long_sm_vs_stored_HCR_uux_ga_QCD_QED>]> 0.00132417678833
1632 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_legs_to_color_link_string>]> 0.00512909889221
1633 <__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestFKSCommon testMethod=test_sort_fksleglist>]> 0.00221490859985
1634-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_rambo.test_wavefunctions testMethod=test_I>]> 0.000235080718994
1635-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_drawing.TestFeynmanDiagram testMethod=test_creation_from_cmd>]> 0.0318400859833
1636+<__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_short_sqso>]> 4.5599489212
1637+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testsumaddvar>]> 0.000104904174805
1638 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAddVariable testMethod=testsumaddadd>]> 0.000117063522339
1639 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=test_spin2propagator5>]> 0.182165145874
1640 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_files.TestFilesGestion testMethod=test_is_uptodate>]> 1.0137488842
1641@@ -1125,21 +1135,21 @@
1642 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputIOTest testMethod=testIO_sqso_uux_uuxuuxx>]> 1.1301419735
1643 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_check_param_card.TestBlock testMethod=test_block_append_remove>]> 0.000144958496094
1644 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestAddVariable testMethod=testmultaddvar>]> 0.000118970870972
1645-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_detect_special_parameters>]> 0.0848360061646
1646+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_pythonwriter_Plorentz>]> 0.0777571201324
1647 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_check_param_card.TestParamCard testMethod=test_mod_param>]> 0.000418901443481
1648 <__main__.TestSuiteModified tests=[<tests.parallel_tests.compare_with_old_mg5_version.OLDMG5Comparator testMethod=test_paralel_cross_sm>]> 865.433312893
1649 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_generate_helas_diagrams_enu_enu>]> 0.008131980896
1650-<__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_IOTest_examples.IOTestExampleWithSetUp testMethod=testIO_MyHandwrittenIOTest>]> 0.000919103622437
1651+<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madevent.TestMECmdShell testMethod=test_width_computation>]> 13.0126650333
1652 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TESTMadLoopParam testMethod=test_initMadLoopParam>]> 0.00100302696228
1653-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.testLorentzObject testMethod=testexpand>]> 0.00219416618347
1654+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_fortranwriter_CFF>]> 0.0698010921478
1655 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestSomeObjectProperty testMethod=test_other>]> 4.31537628174e-05
1656 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.TestMECmdShell testMethod=test_check_html_long_process_strings>]> 20.4391908646
1657 <__main__.TestSuiteModified tests=[<tests.unit_tests.interface.test_madevent.TestMadEventCmd testMethod=test_card_type_recognition>]> 0.0509171485901
1658 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_vector_clash_majorana_process>]> 0.012188911438
1659-<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd.TestCmdShell2 testMethod=test_output_standalone_directory>]> 8.03073692322
1660+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_ML5EW_sm_vs_stored_ML5EW_sqso>]> 0.00940799713135
1661 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML4_dxd_zzg>]> 32.0563452244
1662 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.MultiLegTest testMethod=test_representation>]> 5.91278076172e-05
1663-<__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_helas_call_writers.UFOHELASCallWriterTest testMethod=test_UFO_CPP_helas_call_writer>]> 0.0117120742798
1664+<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_output_files.IOExportMadLoopAcceptanceTest testMethod=testIO_ProcOutputIOTests>]> 28.318707943
1665 <__main__.TestSuiteModified tests=[<tests.unit_tests.madspin.test_madspin.TestEvent testMethod=test_madspin_event>]> 0.00227999687195
1666 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.testLorentzObject testMethod=test_expand_veto>]> 0.00188112258911
1667 <__main__.TestSuiteModified tests=[<tests.unit_tests.loop.test_loop_exporters.IOTestMadLoopOutputFromInterface testMethod=testIO_TIR_output>]> 190.159698009
1668@@ -1147,16 +1157,16 @@
1669 <__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_amcatnlo.MECmdShell testMethod=test_raise_invalid_path_py8>]> 74.8001401424
1670 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestLorentzObjectRepresentation testMethod=testspinsum>]> 0.00303506851196
1671 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_v4.FullHelasOutputTest testMethod=test_export_majorana_decay_chain>]> 0.290829896927
1672-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestSomeObjectProperty testMethod=testConjugateOperator>]> 0.0876400470734
1673+<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_remove_couplings>]> 0.0872521400452
1674 <__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.test_aloha_creation testMethod=test_short_use_of_library_spin2>]> 0.116204977036
1675 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_file_writers.CPPWriterTest testMethod=test_write_cplusplus_line>]> 0.0056209564209
1676-<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_madloop.TestCmdLoop testMethod=test_ML_check_cms_al_lvlvlx_LO>]> 0.423834085464
1677+<__main__.TestSuiteModified tests=[<tests.acceptance_tests.test_cmd_reweight.TestMECmdRWGT testMethod=test_nlo_reweighting>]> 15.5831661224
1678 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_group_subprocs.SubProcessGroupTest testMethod=test_single_decay_combinations>]> 0.0449919700623
1679 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_decay.Test_DecayParticle testMethod=test_setgetinit_exceptions>]> 0.111714839935
1680-<__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestMultVariable testMethod=testmultmultint>]> 0.000134944915771
1681+<__main__.TestSuiteModified tests=[<tests.unit_tests.fks.test_fks_common.TestLinkRBConfSM testMethod=test_link_udxwpg_udxwp>]> 0.0118889808655
1682 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_banner.TestBanner testMethod=test_banner>]> 0.0151350498199
1683 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasWavefunctionTest testMethod=test_values_for_prop>]> 0.000183820724487
1684-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5EW.ML5EWTest testMethod=test_ML5EW_sm_vs_stored_ML5EW_sqso>]> 0.00940799713135
1685+<__main__.TestSuiteModified tests=[<tests.unit_tests.madspin.test_madspin.TestBanner testMethod=test_extract_info>]> 0.00151705741882
1686 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_get_color_data_lines_from_color_matrix>]> 1.95838093758
1687 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_fks.IOExportFKSTest testMethod=test_write_nexternal_file>]> 0.000472784042358
1688 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.DiagramTest testMethod=test_diagram_list_nice_string>]> 0.00311493873596
1689@@ -1168,7 +1178,7 @@
1690 <__main__.TestSuiteModified tests=[<tests.unit_tests.iolibs.test_export_python.IOExportPythonTest testMethod=test_get_python_matrix_methods>]> 0.0204730033875
1691 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_import_ufo.TestRestrictModel testMethod=test_restrict_from_a_param_card>]> 0.106390953064
1692 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_helas_objects.HelasMatrixElementTest testMethod=test_fermionfactor_epem_sepsemepem>]> 0.074609041214
1693-<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_aloha.TestAlohaWriter testMethod=test_short_pythonwriter_Plorentz>]> 0.0777571201324
1694+<__main__.TestSuiteModified tests=[<tests.parallel_tests.test_ML5.ML5Test testMethod=test_long_sm_vs_stored_ML5_gg_hhttx>]> 141.341906071
1695 <__main__.TestSuiteModified tests=[<tests.unit_tests.various.test_aloha.TestSomeObjectProperty testMethod=testGammaAlgebraDefinition>]> 1.01560497284
1696 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_color_amp.ColorAmpTest testMethod=test_color_flow_string_epsilon>]> 0.00355815887451
1697 <__main__.TestSuiteModified tests=[<tests.unit_tests.core.test_base_objects.ProcessDefinitionTest testMethod=test_values_for_prop>]> 0.000351905822754
1698
1699=== modified file 'tests/unit_tests/various/test_lhe_parser.py'
1700--- tests/unit_tests/various/test_lhe_parser.py 2016-03-03 16:04:04 +0000
1701+++ tests/unit_tests/various/test_lhe_parser.py 2017-03-28 15:23:35 +0000
1702@@ -41,6 +41,151 @@
1703 if self.path != pjoin(MG5DIR, "tmp_lhe_test"):
1704 shutil.rmtree(self.path)
1705
1706+
1707+
1708+ def test_parsing_lo_weight(self):
1709+ """test that our parser can handle a large range of lo_weight format"""
1710+
1711+ def parse_lo_weight_old(evt):
1712+ """parsing for unittest onlyx"""
1713+
1714+
1715+ start, stop = evt.tag.find('<mgrwt>'), evt.tag.find('</mgrwt>')
1716+
1717+ if start != -1 != stop :
1718+ text = evt.tag[start+8:stop]
1719+ #<rscale> 3 0.29765919e+03</rscale>
1720+ #<asrwt>0</asrwt>
1721+ #<pdfrwt beam="1"> 1 21 0.15134321e+00 0.29765919e+03</pdfrwt>
1722+ #<pdfrwt beam="2"> 1 21 0.38683649e-01 0.29765919e+03</pdfrwt>
1723+ #<totfact> 0.17315115e+03</totfact>
1724+ evt.loweight={}
1725+ for line in text.split('\n'):
1726+ line = line.replace('<', ' <').replace("'",'"')
1727+ if 'rscale' in line:
1728+ _, nqcd, scale, _ = line.split()
1729+ evt.loweight['n_qcd'] = int(nqcd)
1730+ evt.loweight['ren_scale'] = float(scale)
1731+ elif '<pdfrwt beam="1"' in line:
1732+ args = line.split()
1733+ evt.loweight['n_pdfrw1'] = int(args[2])
1734+ npdf = evt.loweight['n_pdfrw1']
1735+ evt.loweight['pdf_pdg_code1'] = [int(i) for i in args[3:3+npdf]]
1736+ evt.loweight['pdf_x1'] = [float(i) for i in args[3+npdf:3+2*npdf]]
1737+ evt.loweight['pdf_q1'] = [float(i) for i in args[3+2*npdf:3+3*npdf]]
1738+ elif '<pdfrwt beam="2"' in line:
1739+ args = line.split()
1740+ evt.loweight['n_pdfrw2'] = int(args[2])
1741+ npdf = evt.loweight['n_pdfrw2']
1742+ evt.loweight['pdf_pdg_code2'] = [int(i) for i in args[3:3+npdf]]
1743+ evt.loweight['pdf_x2'] = [float(i) for i in args[3+npdf:3+2*npdf]]
1744+ evt.loweight['pdf_q2'] = [float(i) for i in args[3+2*npdf:3+3*npdf]]
1745+ elif '<asrwt>' in line:
1746+ args = line.replace('>','> ').split()
1747+ nalps = int(args[1])
1748+ evt.loweight['asrwt'] = [float(a) for a in args[2:2+nalps]]
1749+
1750+ elif 'totfact' in line:
1751+ args = line.replace('>','> ').split()
1752+ evt.loweight['tot_fact'] = float(args[1])
1753+ else:
1754+ return None
1755+ return evt.loweight
1756+
1757+
1758+ events=["""
1759+<event>
1760+ 4 0 +1.7208000e-01 1.00890300e+02 7.95774700e-02 1.27947900e-01
1761+ -1 -1 0 0 0 501 +0.0000000e+00 +0.0000000e+00 +1.1943355e+01 1.19433546e+01 0.00000000e+00 0.0000e+00 1.0000e+00
1762+ 2 -1 0 0 501 0 +0.0000000e+00 +0.0000000e+00 -1.0679326e+03 1.06793262e+03 0.00000000e+00 0.0000e+00 -1.0000e+00
1763+ 24 1 1 2 0 0 +6.0417155e+00 +4.2744556e+01 -7.9238049e+02 7.97619997e+02 8.04190073e+01 3.4933e-25 -1.0000e+00
1764+ 23 1 1 2 0 0 -6.0417155e+00 -4.2744556e+01 -2.6360878e+02 2.82255979e+02 9.11880035e+01 1.8975e-26 1.0000e+00
1765+</event>
1766+""","""
1767+<event>
1768+ 4 0 +1.7208000e-01 1.00890300e+02 7.95774700e-02 1.27947900e-01
1769+ -1 -1 0 0 0 501 +0.0000000e+00 +0.0000000e+00 +1.1943355e+01 1.19433546e+01 0.00000000e+00 0.0000e+00 1.0000e+00
1770+ 2 -1 0 0 501 0 +0.0000000e+00 +0.0000000e+00 -1.0679326e+03 1.06793262e+03 0.00000000e+00 0.0000e+00 -1.0000e+00
1771+ 24 1 1 2 0 0 +6.0417155e+00 +4.2744556e+01 -7.9238049e+02 7.97619997e+02 8.04190073e+01 3.4933e-25 -1.0000e+00
1772+ 23 1 1 2 0 0 -6.0417155e+00 -4.2744556e+01 -2.6360878e+02 2.82255979e+02 9.11880035e+01 1.8975e-26 1.0000e+00
1773+<mgrwt>
1774+<rscale> 2 0.12500000E+03</rscale>
1775+<asrwt>0</asrwt>
1776+<pdfrwt beam="1"> 1 4 0.11319990E+00 0.12500000E+03</pdfrwt>
1777+<pdfrwt beam="2"> 1 -1 0.59528052E+00 0.12500000E+03</pdfrwt>
1778+<totfact>-0.27352270E-03</totfact>
1779+</mgrwt>
1780+</event>""",
1781+"""
1782+<event>
1783+ 4 0 +1.7208000e-01 1.00890300e+02 7.95774700e-02 1.27947900e-01
1784+ -1 -1 0 0 0 501 +0.0000000e+00 +0.0000000e+00 +1.1943355e+01 1.19433546e+01 0.00000000e+00 0.0000e+00 1.0000e+00
1785+ 2 -1 0 0 501 0 +0.0000000e+00 +0.0000000e+00 -1.0679326e+03 1.06793262e+03 0.00000000e+00 0.0000e+00 -1.0000e+00
1786+ 24 1 1 2 0 0 +6.0417155e+00 +4.2744556e+01 -7.9238049e+02 7.97619997e+02 8.04190073e+01 3.4933e-25 -1.0000e+00
1787+ 23 1 1 2 0 0 -6.0417155e+00 -4.2744556e+01 -2.6360878e+02 2.82255979e+02 9.11880035e+01 1.8975e-26 1.0000e+00
1788+<mgrwt>
1789+<rscale> 2 0.12500000E+03</rscale>
1790+<asrwt> 1 0.11 </asrwt>
1791+<pdfrwt beam='1'> 1 4 0.11319990E+00 0.12500000E+03</pdfrwt>
1792+<pdfrwt beam=2> 2 1 -1 0.2 0.11e-02 0.59528052E+00 0.12500000E+03</pdfrwt>
1793+<totfact> 115 </totfact>
1794+</mgrwt>
1795+</event>""",
1796+"""<event>
1797+ 4 0 +1.7208000e-01 1.00890300e+02 7.95774700e-02 1.27947900e-01
1798+ -1 -1 0 0 0 501 +0.0000000e+00 +0.0000000e+00 +1.1943355e+01 1.19433546e+01 0.00000000e+00 0.0000e+00 1.0000e+00
1799+ 2 -1 0 0 501 0 +0.0000000e+00 +0.0000000e+00 -1.0679326e+03 1.06793262e+03 0.00000000e+00 0.0000e+00 -1.0000e+00
1800+ 24 1 1 2 0 0 +6.0417155e+00 +4.2744556e+01 -7.9238049e+02 7.97619997e+02 8.04190073e+01 3.4933e-25 -1.0000e+00
1801+ 23 1 1 2 0 0 -6.0417155e+00 -4.2744556e+01 -2.6360878e+02 2.82255979e+02 9.11880035e+01 1.8975e-26 1.0000e+00
1802+<mgrwt>
1803+<rscale>2 0.12500000E+03</rscale>
1804+<asrwt>1 0.11 </asrwt>
1805+<pdfrwt beam='1'> 1 4 0.11319990E+00 0.12500000e+03 </pdfrwt>
1806+<pdfrwt beam=2> 2 1 -1 0.2 0.11e-02 0.59528052E+00 0.12500000E+03 </pdfrwt>
1807+<totfact> 115.001 </totfact>
1808+</mgrwt>
1809+</event>""",
1810+"""<event>
1811+ 4 0 +1.7208000e-01 1.00890300e+02 7.95774700e-02 1.27947900e-01
1812+ -1 -1 0 0 0 501 +0.0000000e+00 +0.0000000e+00 +1.1943355e+01 1.19433546e+01 0.00000000e+00 0.0000e+00 1.0000e+00
1813+ 2 -1 0 0 501 0 +0.0000000e+00 +0.0000000e+00 -1.0679326e+03 1.06793262e+03 0.00000000e+00 0.0000e+00 -1.0000e+00
1814+ 24 1 1 2 0 0 +6.0417155e+00 +4.2744556e+01 -7.9238049e+02 7.97619997e+02 8.04190073e+01 3.4933e-25 -1.0000e+00
1815+ 23 1 1 2 0 0 -6.0417155e+00 -4.2744556e+01 -2.6360878e+02 2.82255979e+02 9.11880035e+01 1.8975e-26 1.0000e+00
1816+<mgrwt>
1817+<rscale>2 0.12500000E+03</rscale>
1818+<asrwt>1 0.11 </asrwt>
1819+<pdfrwt beam='1'> 1 4 0.11319990E+00 0.12500000e+03 </pdfrwt>
1820+<pdfrwt beam=2> 2 1 -1 0.2 0.11e-02 0.59528052E+00 0.12500000E+03 </pdfrwt>
1821+<totfact> 115.001 </totfact>
1822+</mgrwt>
1823+</event>"""]
1824+
1825+ solutions = [None,
1826+ {'pdf_pdg_code1': [4], 'asrwt': [], 'pdf_pdg_code2': [-1], 'pdf_q1': [125.0], 'pdf_q2': [125.0], 'n_pdfrw1': 1, 'n_pdfrw2': 1, 'tot_fact': -0.0002735227, 'pdf_x2': [0.59528052], 'pdf_x1': [0.1131999], 'n_qcd': 2, 'ren_scale': 125.0},
1827+ {'pdf_pdg_code1': [4], 'asrwt': [0.11], 'pdf_pdg_code2': [1, -1], 'pdf_q1': [125.0], 'pdf_q2': [0.59528052, 125.0], 'ren_scale': 125.0, 'n_pdfrw1': 1, 'n_pdfrw2': 2, 'pdf_x2': [0.2, 0.0011], 'pdf_x1': [0.1131999], 'n_qcd': 2, 'tot_fact': 115.0},
1828+ {'pdf_pdg_code1': [4], 'asrwt': [0.11], 'pdf_pdg_code2': [1, -1], 'pdf_q1': [125.0], 'pdf_q2': [0.59528052, 125.0], 'ren_scale': 125.0, 'n_pdfrw1': 1, 'n_pdfrw2': 2, 'pdf_x2': [0.2, 0.0011], 'pdf_x1': [0.1131999], 'n_qcd': 2, 'tot_fact': 115.001},
1829+ {'pdf_pdg_code1': [4], 'asrwt': [0.11], 'pdf_pdg_code2': [1, -1], 'pdf_q1': [125.0], 'pdf_q2': [0.59528052, 125.0], 'ren_scale': 125.0, 'n_pdfrw1': 1, 'n_pdfrw2': 2, 'pdf_x2': [0.2, 0.0011], 'pdf_x1': [0.1131999], 'n_qcd': 2, 'tot_fact': 115.001},
1830+ {'pdf_pdg_code1': [4], 'asrwt': [0.11], 'pdf_pdg_code2': [1, -1], 'pdf_q1': [125.0], 'pdf_q2': [0.59528052, 125.0], 'ren_scale': 125.0, 'n_pdfrw1': 1, 'n_pdfrw2': 2, 'pdf_x2': [0.2, 0.0011], 'pdf_x1': [0.1131999], 'n_qcd': 2, 'tot_fact': 115.001}]
1831+
1832+ for i,evt in enumerate(events):
1833+ evt1 = lhe_parser.Event(evt)
1834+ evt2 = lhe_parser.Event(evt)
1835+ lo = evt1.parse_lo_weight()
1836+ try:
1837+ lo2 = parse_lo_weight_old(evt2)
1838+ except:
1839+ pass
1840+ else:
1841+ if lo:
1842+ for key in lo2:
1843+ self.assertEqual(lo[key], lo2[key])
1844+ self.assertEqual(lo, solutions[i])
1845+
1846+
1847+
1848+
1849+
1850+
1851 def test_read_write_lhe(self):
1852 """test that we can read/write an lhe event file"""
1853
1854
1855=== modified file 'vendor/ninja.tar.gz'
1856Binary files vendor/ninja.tar.gz 2016-09-01 20:49:26 +0000 and vendor/ninja.tar.gz 2017-03-28 15:23:35 +0000 differ

Subscribers

People subscribed via source and target branches

to all changes: