Comment 5 for bug 1752158

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

Hi,

Looks like that the issue was that some of your PDG code was too large to be handle by MG5_aMC.

Here is the diff that fix the problem (just push the limit a bit further.

=== modified file 'Template/LO/Source/rw_events.f'
--- Template/LO/Source/rw_events.f 2016-11-20 14:05:38 +0000
+++ Template/LO/Source/rw_events.f 2018-04-11 20:43:00 +0000
@@ -217,7 +217,7 @@
       write(largeBuff,'(a)') '</event>'
       evt_record=trim(evt_record)//CHAR(13)//CHAR(10)//trim(largeBuff)
       return
- 51 format(i9,5i5,5e19.11,f3.0,f4.0)
+ 51 format(i11,5i5,5e19.11,f3.0,f4.0)
       end

@@ -300,7 +300,7 @@
       enddo
       write(lun,'(a)') '</event>'
       return
- 51 format(i9,5i5,5e19.11,f3.0,f4.0)
+ 51 format(i11,5i5,5e19.11,f3.0,f4.0)
       end

       subroutine write_comments(lun)