-
Notifications
You must be signed in to change notification settings - Fork 2
/
input.lhe
7984 lines (7976 loc) · 536 KB
/
input.lhe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<LesHouchesEvents version="3.0">
<header>
<!--
#*********************************************************************
# *
# MadGraph5_aMC@NLO *
# *
# Going Beyond *
# *
# http://madgraph.hep.uiuc.edu *
# http://madgraph.phys.ucl.ac.be *
# http://amcatnlo.cern.ch *
# *
# The MadGraph5_aMC@NLO team *
# *
#....................................................................*
# *
# This file contains all the information necessary to reproduce *
# the events generated: *
# *
# 1. software version *
# 2. proc_card : code generation info including model *
# 3. param_card : model primary parameters in the LH format *
# 4. run_card : running parameters (collider and cuts) *
# 5. pythia_card : present only if pythia has been run *
# 6. pgs_card : present only if pgs has been run *
# 7. delphes_cards : present only if delphes has been run *
# *
# *
#*********************************************************************
-->
<MGVersion>
2.6.4
</MGVersion>
<MG5ProcCard>
<![CDATA[
#************************************************************
#* MadGraph5_aMC@NLO *
#* *
#* * * *
#* * * * * *
#* * * * * 5 * * * * *
#* * * * * *
#* * * *
#* *
#* *
#* VERSION 2.6.4 2018-11-09 *
#* *
#* The MadGraph5_aMC@NLO Development Team - Find us at *
#* https://server06.fynu.ucl.ac.be/projects/madgraph *
#* *
#************************************************************
#* *
#* Command File for MadGraph5_aMC@NLO *
#* *
#* run as ./bin/mg5_aMC filename *
#* *
#************************************************************
set default_unset_couplings 99
set group_subprocesses Auto
set ignore_six_quark_processes False
set loop_optimized_output True
set loop_color_flows False
set gauge unitary
set complex_mass_scheme False
set max_npoint_for_channel 0
import model sm
define p = g u c d s u~ c~ d~ s~
define j = g u c d s u~ c~ d~ s~
define l+ = e+ mu+
define l- = e- mu-
define vl = ve vm vt
define vl~ = ve~ vm~ vt~
generate p p > l- vl~
launch
]]>
</MG5ProcCard>
<MGProcCard>
#*********************************************************************
# MadGraph/MadEvent *
# http://madgraph.hep.uiuc.edu *
# *
# proc_card.dat *
#*********************************************************************
# *
# This Files is generated by MADGRAPH 5 *
# *
# WARNING: This Files is generated for MADEVENT (compatibility issue)*
# This files is NOT a valid MG4 proc_card.dat *
# Running this in MG4 will NEVER reproduce the result of MG5*
# *
#*********************************************************************
#*********************************************************************
# Process(es) requested : mg2 input *
#*********************************************************************
# Begin PROCESS # This is TAG. Do not modify this line
p p > l- vl~ #Process
# Be carefull the coupling are here in MG5 convention
end_coup # End the couplings input
done # this tells MG there are no more procs
# End PROCESS # This is TAG. Do not modify this line
#*********************************************************************
# Model information *
#*********************************************************************
# Begin MODEL # This is TAG. Do not modify this line
sm
# End MODEL # This is TAG. Do not modify this line
#*********************************************************************
# Start multiparticle definitions *
#*********************************************************************
# Begin MULTIPARTICLES # This is TAG. Do not modify this line
# End MULTIPARTICLES # This is TAG. Do not modify this line
</MGProcCard>
<MGRunCard>
<![CDATA[
#*********************************************************************
# MadGraph5_aMC@NLO *
# *
# run_card.dat MadEvent *
# *
# This file is used to set the parameters of the run. *
# *
# Some notation/conventions: *
# *
# Lines starting with a '# ' are info or comments *
# *
# mind the format: value = variable ! comment *
# *
# To display more options, you can type the command: *
# update full_run_card *
#*********************************************************************
#
#*******************
# Running parameters
#*******************
#
#*********************************************************************
# Tag name for the run (one word) *
#*********************************************************************
tag_1 = run_tag ! name of the run
#*********************************************************************
# Number of events and rnd seed *
# Warning: Do not generate more than 1M events in a single run *
# If you want to run Pythia, avoid more than 50k events in a run. *
#*********************************************************************
500 = nevents ! Number of unweighted events requested
21 = iseed ! rnd seed (0=assigned automatically=default))
#*********************************************************************
# Collider type and energy *
# lpp: 0=No PDF, 1=proton, -1=antiproton, 2=photon from proton, *
# 3=photon from electron *
#*********************************************************************
1 = lpp1 ! beam 1 type
1 = lpp2 ! beam 2 type
6500.0 = ebeam1 ! beam 1 total energy in GeV
6500.0 = ebeam2 ! beam 2 total energy in GeV
# To see polarised beam options: type "update beam_pol"
#*********************************************************************
# PDF CHOICE: this automatically fixes also alpha_s and its evol. *
#*********************************************************************
nn23lo1 = pdlabel ! PDF set
230000 = lhaid ! if pdlabel=lhapdf, this is the lhapdf number
# To see heavy ion options: type "update ion_pdf"
#*********************************************************************
# Renormalization and factorization scales *
#*********************************************************************
False = fixed_ren_scale ! if .true. use fixed ren scale
False = fixed_fac_scale ! if .true. use fixed fac scale
91.188 = scale ! fixed ren scale
91.188 = dsqrt_q2fact1 ! fixed fact scale for pdf1
91.188 = dsqrt_q2fact2 ! fixed fact scale for pdf2
-1 = dynamical_scale_choice ! Choose one of the preselected dynamical choices
1.0 = scalefact ! scale factor for event-by-event scales
#*********************************************************************
# Type and output format
#*********************************************************************
False = gridpack !True = setting up the grid pack
-1.0 = time_of_flight ! threshold (in mm) below which the invariant livetime is not written (-1 means not written)
3.0 = lhe_version ! Change the way clustering information pass to shower.
True = clusinfo ! include clustering tag in output
average = event_norm ! average/sum. Normalization of the weight in the LHEF
#*********************************************************************
# Matching parameter (MLM only)
#*********************************************************************
0 = ickkw ! 0 no matching, 1 MLM
1.0 = alpsfact ! scale factor for QCD emission vx
False = chcluster ! cluster only according to channel diag
4 = asrwgtflavor ! highest quark flavor for a_s reweight
False = auto_ptj_mjj ! Automatic setting of ptj and mjj if xqcut >0
! (turn off for VBF and single top processes)
0.0 = xqcut ! minimum kt jet measure between partons
#*********************************************************************
#
#*********************************************************************
# handling of the helicities:
# 0: sum over all helicities
# 1: importance sampling over helicities
#*********************************************************************
0 = nhel ! using helicities importance sampling or not.
#*********************************************************************
# Generation bias, check the wiki page below for more information: *
# 'cp3.irmp.ucl.ac.be/projects/madgraph/wiki/LOEventGenerationBias' *
#*********************************************************************
None = bias_module ! Bias type of bias, [None, ptj_bias, -custom_folder-]
{} = bias_parameters ! Specifies the parameters of the module.
#
#*******************************
# Parton level cuts definition *
#*******************************
#
#
#*********************************************************************
# BW cutoff (M+/-bwcutoff*Gamma) ! Define on/off-shell for "$" and decay
#*********************************************************************
15.0 = bwcutoff ! (M+/-bwcutoff*Gamma)
#*********************************************************************
# Apply pt/E/eta/dr/mij/kt_durham cuts on decay products or not
# (note that etmiss/ptll/ptheavy/ht/sorted cuts always apply)
#*********************************************************************
False = cut_decays ! Cut decay products
#*********************************************************************
# Standard Cuts *
#*********************************************************************
# Minimum and maximum pt's (for max, -1 means no cut) *
#*********************************************************************
20.0 = ptj ! minimum pt for the jets
0.0 = ptb ! minimum pt for the b
10.0 = pta ! minimum pt for the photons
10.0 = ptl ! minimum pt for the charged leptons
0.0 = misset ! minimum missing Et (sum of neutrino's momenta)
-1.0 = ptjmax ! maximum pt for the jets
-1.0 = ptbmax ! maximum pt for the b
-1.0 = ptamax ! maximum pt for the photons
-1.0 = ptlmax ! maximum pt for the charged leptons
-1.0 = missetmax ! maximum missing Et (sum of neutrino's momenta)
{} = pt_min_pdg ! pt cut for other particles (use pdg code). Applied on particle and anti-particle
{} = pt_max_pdg ! pt cut for other particles (syntax e.g. {6: 100, 25: 50})
#*********************************************************************
# Minimum and maximum E's (in the center of mass frame) *
#*********************************************************************
0.0 = ej ! minimum E for the jets
0.0 = eb ! minimum E for the b
0.0 = ea ! minimum E for the photons
0.0 = el ! minimum E for the charged leptons
-1.0 = ejmax ! maximum E for the jets
-1.0 = ebmax ! maximum E for the b
-1.0 = eamax ! maximum E for the photons
-1.0 = elmax ! maximum E for the charged leptons
{} = e_min_pdg ! E cut for other particles (use pdg code). Applied on particle and anti-particle
{} = e_max_pdg ! E cut for other particles (syntax e.g. {6: 100, 25: 50})
#*********************************************************************
# Maximum and minimum absolute rapidity (for max, -1 means no cut) *
#*********************************************************************
5.0 = etaj ! max rap for the jets
-1.0 = etab ! max rap for the b
2.5 = etaa ! max rap for the photons
2.5 = etal ! max rap for the charged leptons
0.0 = etajmin ! min rap for the jets
0.0 = etabmin ! min rap for the b
0.0 = etaamin ! min rap for the photons
0.0 = etalmin ! main rap for the charged leptons
{} = eta_min_pdg ! rap cut for other particles (use pdg code). Applied on particle and anti-particle
{} = eta_max_pdg ! rap cut for other particles (syntax e.g. {6: 2.5, 23: 5})
#*********************************************************************
# Minimum and maximum DeltaR distance *
#*********************************************************************
0.4 = drjj ! min distance between jets
0.0 = drbb ! min distance between b's
0.4 = drll ! min distance between leptons
0.4 = draa ! min distance between gammas
0.0 = drbj ! min distance between b and jet
0.4 = draj ! min distance between gamma and jet
0.4 = drjl ! min distance between jet and lepton
0.0 = drab ! min distance between gamma and b
0.0 = drbl ! min distance between b and lepton
0.4 = dral ! min distance between gamma and lepton
-1.0 = drjjmax ! max distance between jets
-1.0 = drbbmax ! max distance between b's
-1.0 = drllmax ! max distance between leptons
-1.0 = draamax ! max distance between gammas
-1.0 = drbjmax ! max distance between b and jet
-1.0 = drajmax ! max distance between gamma and jet
-1.0 = drjlmax ! max distance between jet and lepton
-1.0 = drabmax ! max distance between gamma and b
-1.0 = drblmax ! max distance between b and lepton
-1.0 = dralmax ! maxdistance between gamma and lepton
#*********************************************************************
# Minimum and maximum invariant mass for pairs *
# WARNING: for four lepton final state mmll cut require to have *
# different lepton masses for each flavor! *
#*********************************************************************
0.0 = mmjj ! min invariant mass of a jet pair
0.0 = mmbb ! min invariant mass of a b pair
0.0 = mmaa ! min invariant mass of gamma gamma pair
0.0 = mmll ! min invariant mass of l+l- (same flavour) lepton pair
-1.0 = mmjjmax ! max invariant mass of a jet pair
-1.0 = mmbbmax ! max invariant mass of a b pair
-1.0 = mmaamax ! max invariant mass of gamma gamma pair
-1.0 = mmllmax ! max invariant mass of l+l- (same flavour) lepton pair
{} = mxx_min_pdg ! min invariant mass of a pair of particles X/X~ (e.g. {6:250})
{'default': False} = mxx_only_part_antipart ! if True the invariant mass is applied only
! to pairs of particle/antiparticle and not to pairs of the same pdg codes.
#*********************************************************************
# Minimum and maximum invariant mass for all letpons *
#*********************************************************************
0.0 = mmnl ! min invariant mass for all letpons (l+- and vl)
-1.0 = mmnlmax ! max invariant mass for all letpons (l+- and vl)
#*********************************************************************
# Minimum and maximum pt for 4-momenta sum of leptons *
#*********************************************************************
0.0 = ptllmin ! Minimum pt for 4-momenta sum of leptons(l and vl)
-1.0 = ptllmax ! Maximum pt for 4-momenta sum of leptons(l and vl)
#*********************************************************************
# Inclusive cuts *
#*********************************************************************
0.0 = ptheavy ! minimum pt for at least one heavy final state
0.0 = xptj ! minimum pt for at least one jet
0.0 = xptb ! minimum pt for at least one b
0.0 = xpta ! minimum pt for at least one photon
0.0 = xptl ! minimum pt for at least one charged lepton
#*********************************************************************
# Control the pt's of the jets sorted by pt *
#*********************************************************************
0.0 = ptj1min ! minimum pt for the leading jet in pt
0.0 = ptj2min ! minimum pt for the second jet in pt
0.0 = ptj3min ! minimum pt for the third jet in pt
0.0 = ptj4min ! minimum pt for the fourth jet in pt
-1.0 = ptj1max ! maximum pt for the leading jet in pt
-1.0 = ptj2max ! maximum pt for the second jet in pt
-1.0 = ptj3max ! maximum pt for the third jet in pt
-1.0 = ptj4max ! maximum pt for the fourth jet in pt
0 = cutuse ! reject event if fails any (0) / all (1) jet pt cuts
#*********************************************************************
# Control the pt's of leptons sorted by pt *
#*********************************************************************
0.0 = ptl1min ! minimum pt for the leading lepton in pt
0.0 = ptl2min ! minimum pt for the second lepton in pt
0.0 = ptl3min ! minimum pt for the third lepton in pt
0.0 = ptl4min ! minimum pt for the fourth lepton in pt
-1.0 = ptl1max ! maximum pt for the leading lepton in pt
-1.0 = ptl2max ! maximum pt for the second lepton in pt
-1.0 = ptl3max ! maximum pt for the third lepton in pt
-1.0 = ptl4max ! maximum pt for the fourth lepton in pt
#*********************************************************************
# Control the Ht(k)=Sum of k leading jets *
#*********************************************************************
0.0 = htjmin ! minimum jet HT=Sum(jet pt)
-1.0 = htjmax ! maximum jet HT=Sum(jet pt)
0.0 = ihtmin !inclusive Ht for all partons (including b)
-1.0 = ihtmax !inclusive Ht for all partons (including b)
0.0 = ht2min ! minimum Ht for the two leading jets
0.0 = ht3min ! minimum Ht for the three leading jets
0.0 = ht4min ! minimum Ht for the four leading jets
-1.0 = ht2max ! maximum Ht for the two leading jets
-1.0 = ht3max ! maximum Ht for the three leading jets
-1.0 = ht4max ! maximum Ht for the four leading jets
#***********************************************************************
# Photon-isolation cuts, according to hep-ph/9801442 *
# When ptgmin=0, all the other parameters are ignored *
# When ptgmin>0, pta and draj are not going to be used *
#***********************************************************************
0.0 = ptgmin ! Min photon transverse momentum
0.4 = R0gamma ! Radius of isolation code
1.0 = xn ! n parameter of eq.(3.4) in hep-ph/9801442
1.0 = epsgamma ! epsilon_gamma parameter of eq.(3.4) in hep-ph/9801442
True = isoEM ! isolate photons from EM energy (photons and leptons)
#*********************************************************************
# WBF cuts *
#*********************************************************************
0.0 = xetamin ! minimum rapidity for two jets in the WBF case
0.0 = deltaeta ! minimum rapidity for two jets in the WBF case
#***********************************************************************
# Turn on either the ktdurham or ptlund cut to activate *
# CKKW(L) merging with Pythia8 [arXiv:1410.3012, arXiv:1109.4829] *
#***********************************************************************
-1.0 = ktdurham
0.4 = dparameter
-1.0 = ptlund
1, 2, 3, 4, 5, 6, 21 = pdgs_for_merging_cut ! PDGs for two cuts above
#*********************************************************************
# maximal pdg code for quark to be considered as a light jet *
# (otherwise b cuts are applied) *
#*********************************************************************
4 = maxjetflavor ! Maximum jet pdg code
#*********************************************************************
#
#*********************************************************************
# Store info for systematics studies *
# WARNING: Do not use for interference type of computation *
#*********************************************************************
True = use_syst ! Enable systematics studies
#
systematics = systematics_program ! none, systematics [python], SysCalc [depreceted, C++]
['--mur=0.5,1,2', '--muf=0.5,1,2', '--pdf=errorset'] = systematics_arguments ! see: https://cp3.irmp.ucl.ac.be/projects/madgraph/wiki/Systematics#Systematicspythonmodule
# Syscalc is deprecated but to see the associate options type'update syscalc'
]]>
</MGRunCard>
<slha>
######################################################################
## PARAM_CARD AUTOMATICALY GENERATED BY MG5 FOLLOWING UFO MODEL ####
######################################################################
## ##
## Width set on Auto will be computed following the information ##
## present in the decay.py files of the model. ##
## See arXiv:1402.1178 for more details. ##
## ##
######################################################################
###################################
## INFORMATION FOR MASS
###################################
Block mass
5 4.700000e+00 # MB
6 1.730000e+02 # MT
15 1.777000e+00 # MTA
23 9.118800e+01 # MZ
25 1.250000e+02 # MH
## Dependent parameters, given by model restrictions.
## Those values should be edited following the
## analytical expression. MG5 ignores those values
## but they are important for interfacing the output of MG5
## to external program such as Pythia.
1 0.000000 # d : 0.0
2 0.000000 # u : 0.0
3 0.000000 # s : 0.0
4 0.000000 # c : 0.0
11 0.000000 # e- : 0.0
12 0.000000 # ve : 0.0
13 0.000000 # mu- : 0.0
14 0.000000 # vm : 0.0
16 0.000000 # vt : 0.0
21 0.000000 # g : 0.0
22 0.000000 # a : 0.0
24 80.419002 # w+ : cmath.sqrt(MZ__exp__2/2. + cmath.sqrt(MZ__exp__4/4. - (aEW*cmath.pi*MZ__exp__2)/(Gf*sqrt__2)))
###################################
## INFORMATION FOR SMINPUTS
###################################
Block sminputs
1 1.325070e+02 # aEWM1
2 1.166390e-05 # Gf
3 1.180000e-01 # aS
###################################
## INFORMATION FOR YUKAWA
###################################
Block yukawa
5 4.700000e+00 # ymb
6 1.730000e+02 # ymt
15 1.777000e+00 # ymtau
###################################
## INFORMATION FOR DECAY
###################################
DECAY 6 1.491500e+00 # WT
DECAY 23 2.441404e+00 # WZ
DECAY 24 2.047600e+00 # WW
DECAY 25 6.382339e-03 # WH
## Dependent parameters, given by model restrictions.
## Those values should be edited following the
## analytical expression. MG5 ignores those values
## but they are important for interfacing the output of MG5
## to external program such as Pythia.
DECAY 1 0.000000 # d : 0.0
DECAY 2 0.000000 # u : 0.0
DECAY 3 0.000000 # s : 0.0
DECAY 4 0.000000 # c : 0.0
DECAY 5 0.000000 # b : 0.0
DECAY 11 0.000000 # e- : 0.0
DECAY 12 0.000000 # ve : 0.0
DECAY 13 0.000000 # mu- : 0.0
DECAY 14 0.000000 # vm : 0.0
DECAY 15 0.000000 # ta- : 0.0
DECAY 16 0.000000 # vt : 0.0
DECAY 21 0.000000 # g : 0.0
DECAY 22 0.000000 # a : 0.0
</slha>
<MGGenerationInfo>
# Number of Events : 500
# Integrated weight (pb) : 7570.7
</MGGenerationInfo>
</header>
<init>
2212 2212 6.500000e+03 6.500000e+03 0 0 247000 247000 -4 1
7.570700e+03 6.128400e+01 7.570700e+03 1
<generator name='MadGraph5_aMC@NLO' version='2.6.4'>please cite 1405.0301 </generator>
</init>
<event>
5 1 +7.5707000e+03 9.51984800e+01 7.54677100e-03 1.29073000e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +7.0077840818e+02 7.0077840818e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -3.2331011010e+00 3.2331011010e+00 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +6.9754530708e+02 7.0401150928e+02 9.5198475682e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -3.3277975838e+00 +1.2524155976e+01 +1.0063032873e+01 1.6407112795e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +3.3277975838e+00 -1.2524155976e+01 +6.8748227421e+02 6.8760439649e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.95198476E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.49740073E-03 0.95198476E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.10781194E+00 0.95198476E+02</pdfrwt>
<totfact> 0.24047017E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.53689100e+01 7.54677100e-03 1.31447100e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +7.3323138550e+01 7.3323138550e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -2.4848401831e+01 2.4848401831e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +4.8474736719e+01 9.8171540380e+01 8.5368912612e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 +1.3662836974e+00 +1.4606210051e+01 +7.0333092958e+01 7.1846726218e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 -1.3662836974e+00 -1.4606210051e+01 -2.1858356239e+01 2.6324814162e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.85368913E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.11280483E-01 0.85368913E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.38228311E-02 0.85368913E+02</pdfrwt>
<totfact> 0.11690210E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.15260800e+01 7.54677100e-03 1.32477600e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +1.6408401881e+01 1.6408401881e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -1.0126674707e+02 1.0126674707e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -8.4858345190e+01 1.1767514895e+02 8.1526081301e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -2.9717841140e+01 +2.7878464488e+01 -4.0804704598e+01 5.7666132015e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +2.9717841140e+01 -2.7878464488e+01 -4.4053640591e+01 6.0009016936e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81526081E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.15579499E-01 0.81526081E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.25243696E-02 0.81526081E+02</pdfrwt>
<totfact> 0.13996323E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.08614600e+01 7.54677100e-03 1.32662400e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +8.5419279167e+01 8.5419279167e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -1.9136708774e+01 1.9136708774e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +6.6282570393e+01 1.0455598794e+02 8.0861458535e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -3.5311207235e+01 -1.1641681323e+01 +5.3676958837e+01 6.5296447150e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +3.5311207235e+01 +1.1641681323e+01 +1.2605611556e+01 3.9259540791e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.80861459E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.13141427E-01 0.80861459E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.29441091E-02 0.80861459E+02</pdfrwt>
<totfact> 0.13909626E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.16372700e+01 7.54677100e-03 1.32446800e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +6.0668971355e+01 6.0668971355e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -2.7463147151e+01 2.7463147151e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +3.3205824204e+01 8.8132118505e+01 8.1637268151e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 -3.4279371443e+01 -1.3161226489e+01 -2.6443493235e+00 3.6814206124e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 +3.4279371443e+01 +1.3161226489e+01 +3.5850173528e+01 5.1317912381e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81637268E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.42250995E-02 0.81637268E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.93336879E-02 0.81637268E+02</pdfrwt>
<totfact> 0.11224040E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.17181300e+01 7.54677100e-03 1.32424500e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +4.1113914779e+00 4.1113914779e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -4.0605796194e+02 4.0605796194e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -4.0194657046e+02 4.1016935342e+02 8.1718131262e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -2.9183083479e+01 +2.8392864314e+01 -2.1810978581e+02 2.2187763694e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +2.9183083479e+01 -2.8392864314e+01 -1.8383678465e+02 1.8829171648e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81718131E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.62470483E-01 0.81718131E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.63252148E-03 0.81718131E+02</pdfrwt>
<totfact> 0.18005536E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.15485900e+01 7.54677100e-03 1.32471300e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +1.6249693334e+02 1.6249693334e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -1.0231228767e+01 1.0231228767e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +1.5226570457e+02 1.7272816210e+02 8.1548594074e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -1.8391181522e+01 +2.5453098319e+01 +2.1043999213e+01 3.7801397788e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +1.8391181522e+01 -2.5453098319e+01 +1.3122170536e+02 1.3492676431e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81548594E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.15740353E-02 0.81548594E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.24999526E-01 0.81548594E+02</pdfrwt>
<totfact> 0.87552682E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.96626500e+01 7.54677100e-03 1.33001200e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +7.5909846185e+02 7.5909846185e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -2.0900245833e+00 2.0900245833e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +7.5700843727e+02 7.6118848643e+02 7.9662649878e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 +3.2172130934e+01 +4.0980695376e+00 +1.5755614245e+02 1.6085949834e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 -3.2172130934e+01 -4.0980695376e+00 +5.9945229482e+02 6.0032898809e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.79662650E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.11678416E+00 0.79662650E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.32154285E-03 0.79662650E+02</pdfrwt>
<totfact> 0.20192547E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.07630000e+01 7.54677100e-03 1.32690000e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +3.5451972002e+02 3.5451972002e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -4.5996466839e+00 4.5996466839e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +3.4992007334e+02 3.5911936670e+02 8.0762997828e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -2.8358350573e+01 +2.8658526995e+01 +1.6486106682e+02 1.6971941129e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +2.8358350573e+01 -2.8658526995e+01 +1.8505900651e+02 1.8939995541e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.80762998E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.54541474E-01 0.80762998E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.70763823E-03 0.80762998E+02</pdfrwt>
<totfact> 0.18146702E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.95704500e+01 7.54677100e-03 1.33027500e-01
-4 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +1.5012712480e+01 1.5012712480e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
3 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -1.0543491910e+02 1.0543491910e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -9.0422206624e+01 1.2044763158e+02 7.9570449939e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 -2.4400353477e+01 -1.5141744396e+01 -8.6892520821e+01 9.1514806713e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 +2.4400353477e+01 +1.5141744396e+01 -3.5296858030e+00 2.8932824871e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.79570450E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 3 0.16220757E-01 0.79570450E+02</pdfrwt>
<pdfrwt beam="2"> 1 -4 0.23096480E-02 0.79570450E+02</pdfrwt>
<totfact> 0.42887678E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.14078500e+01 7.54677100e-03 1.32510300e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +2.3392957667e+02 2.3392957667e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -7.0825148818e+00 7.0825148818e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +2.2684706179e+02 2.4101209156e+02 8.1407854856e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -2.3555280373e+01 +2.8492120372e+01 +1.6385358794e+02 1.6797217162e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +2.3555280373e+01 -2.8492120372e+01 +6.2993473852e+01 7.3039919939e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81407855E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.35989160E-01 0.81407855E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.10896179E-02 0.81407855E+02</pdfrwt>
<totfact> 0.16414503E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.03459500e+01 7.54677100e-03 1.32807300e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +5.3853541005e+01 5.3853541005e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -2.9967720083e+01 2.9967720083e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +2.3885820922e+01 8.3821261088e+01 8.0345948058e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -7.4737485462e+00 +2.6523733496e+01 -1.8553370227e+01 3.3220368792e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +7.4737485462e+00 -2.6523733496e+01 +4.2439191148e+01 5.0600892297e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.80345948E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.46104185E-02 0.80345948E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.82851601E-02 0.80345948E+02</pdfrwt>
<totfact> 0.11943375E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.70714200e+01 7.54677100e-03 1.31010300e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +8.5895235032e+01 8.5895235032e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -2.2065928659e+01 2.2065928659e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +6.3829306373e+01 1.0796116369e+02 8.7071421909e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 +3.1983861683e+01 +1.0527041812e+00 +6.8513839023e+01 7.5618924430e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 -3.1983861683e+01 -1.0527041812e+00 -4.6845326500e+00 3.2342239261e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.87071422E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.13214651E-01 0.87071422E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.33947583E-02 0.87071422E+02</pdfrwt>
<totfact> 0.11371545E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.94350500e+01 7.54677100e-03 1.33066200e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +2.1742671629e+01 2.1742671629e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -7.2552338474e+01 7.2552338474e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -5.0809666845e+01 9.4295010103e+01 7.9435046960e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 +9.5102687746e+00 +1.3123632514e+01 +1.7638660220e+01 2.3954065978e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 -9.5102687746e+00 -1.3123632514e+01 -6.8448327065e+01 7.0340944126e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.79435047E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.33450264E-02 0.79435047E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.11161898E-01 0.79435047E+02</pdfrwt>
<totfact> 0.11615380E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.02867200e+01 7.54677100e-03 1.32824000e-01
3 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +1.4059326674e+01 1.4059326674e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-4 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -1.1462067388e+02 1.1462067388e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -1.0056134720e+02 1.2868000055e+02 8.0286723627e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -3.3512591222e+01 -2.1089019587e+00 -8.5539413326e+01 9.1894137300e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +3.3512591222e+01 +2.1089019587e+00 -1.5021933879e+01 3.6785863254e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.80286724E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 3 0.21629734E-02 0.80286724E+02</pdfrwt>
<pdfrwt beam="2"> 1 -4 0.17633949E-01 0.80286724E+02</pdfrwt>
<totfact> 0.38839936E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.19651900e+01 7.54677100e-03 1.32356500e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +3.0878590645e+01 3.0878590645e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -5.4392804219e+01 5.4392804219e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -2.3514213575e+01 8.5271394864e+01 8.1965191039e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 +1.9662110337e+01 -2.3232896297e+01 +1.6794536510e+01 3.4762372040e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 -1.9662110337e+01 +2.3232896297e+01 -4.0308750085e+01 5.0509022824e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81965191E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.47505525E-02 0.81965191E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.83681236E-02 0.81965191E+02</pdfrwt>
<totfact> 0.11337092E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.12252800e+01 7.54677100e-03 1.32561000e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +3.0578059520e+02 3.0578059520e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -5.3940190919e+00 5.3940190919e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +3.0038657611e+02 3.1117461429e+02 8.1225276076e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -3.8204347603e+01 -3.0877851526e+00 +2.0163157159e+02 2.0524228915e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +3.8204347603e+01 +3.0877851526e+00 +9.8755004513e+01 1.0593232514e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81225276E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.47043155E-01 0.81225276E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.82984933E-03 0.81225276E+02</pdfrwt>
<totfact> 0.17395480E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.85552000e+01 7.54677100e-03 1.33320200e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +2.1928040591e+02 2.1928040591e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -7.0354197312e+00 7.0354197312e+00 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +2.1224498618e+02 2.2631582564e+02 7.8555195739e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 -2.4165816537e+01 +1.3596722097e+01 +2.5977827931e+01 3.7996119337e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 +2.4165816537e+01 -1.3596722097e+01 +1.8626715825e+02 1.8831970630e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.78555196E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.10823724E-02 0.78555196E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.33735442E-01 0.78555196E+02</pdfrwt>
<totfact> 0.85793959E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.88522800e+01 7.54677100e-03 1.33234000e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +5.7352027976e+02 5.7352027976e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -2.7103150857e+00 2.7103150857e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +5.7080996468e+02 5.7623059485e+02 7.8852283828e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 -5.2462582123e+00 +3.8389228431e+01 +2.3212142197e+02 2.3533297818e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 +5.2462582123e+00 -3.8389228431e+01 +3.3868854271e+02 3.4089761667e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.78852284E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.88233793E-01 0.78852284E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.41697201E-03 0.78852284E+02</pdfrwt>
<totfact> 0.20639885E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.96494100e+01 7.54677100e-03 1.33004900e-01
-4 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +2.0661916073e+01 2.0661916073e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
3 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -7.6759933579e+01 7.6759933579e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -5.6098017505e+01 9.7421849652e+01 7.9649414446e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 -9.4379939956e+00 +3.2842293573e+01 -5.3065458292e+01 6.3116042663e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 +9.4379939956e+00 -3.2842293573e+01 -3.0325592138e+00 3.4305806989e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.79649414E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 3 0.11809220E-01 0.79649414E+02</pdfrwt>
<pdfrwt beam="2"> 1 -4 0.31787564E-02 0.79649414E+02</pdfrwt>
<totfact> 0.44644082E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.36875400e+01 7.54677100e-03 1.31890100e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +1.9970628198e+02 1.9970628198e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -8.7673814047e+00 8.7673814047e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +1.9093890057e+02 2.0847366338e+02 8.3687541319e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -2.3964320325e+01 +2.1347488857e+01 +1.6235419331e+02 1.6549588519e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +2.3964320325e+01 -2.1347488857e+01 +2.8584707262e+01 4.2977778193e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.83687541E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.30724040E-01 0.83687541E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.13488281E-02 0.83687541E+02</pdfrwt>
<totfact> 0.14784988E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.81718200e+01 7.54677100e-03 1.30734000e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +2.4165269298e+02 2.4165269298e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -8.0428139500e+00 8.0428139500e+00 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +2.3360987903e+02 2.4969550693e+02 8.8171824300e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 -1.9725415550e+00 +1.1267134460e+01 -3.7672845213e+00 1.2042909606e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 +1.9725415550e+00 -1.1267134460e+01 +2.3737716355e+02 2.3765259732e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.88171824E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.12373562E-02 0.88171824E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.37177332E-01 0.88171824E+02</pdfrwt>
<totfact> 0.60908141E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.94365100e+01 7.54677100e-03 1.33065800e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +1.1944547314e+01 1.1944547314e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -1.3207196921e+02 1.3207196921e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -1.2012742190e+02 1.4401651653e+02 7.9436512640e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -2.4370917892e+01 +9.7378505035e+00 -1.1411268314e+02 1.1709172398e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +2.4370917892e+01 -9.7378505035e+00 -6.0147387606e+00 2.6924792547e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.79436513E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.20318765E-01 0.79436513E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.18376226E-02 0.79436513E+02</pdfrwt>
<totfact> 0.15721705E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.10083000e+01 7.54677100e-03 1.32621400e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +4.0514858286e+00 4.0514858286e+00 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -4.0493447910e+02 4.0493447910e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -4.0088299327e+02 4.0898596493e+02 8.1008303366e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -1.1079259158e+01 -2.0354918075e+01 -3.2728113699e+01 4.0102395186e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +1.1079259158e+01 +2.0354918075e+01 -3.6815487957e+02 3.6888356974e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.81008303E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.62330529E-03 0.81008303E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.62297634E-01 0.81008303E+02</pdfrwt>
<totfact> 0.56745706E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.96348000e+01 7.54677100e-03 1.33009100e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +7.2052220721e+01 7.2052220721e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -2.2003838413e+01 2.2003838413e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +5.0048382308e+01 9.4056059133e+01 7.9634801990e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 +1.2537166229e+01 +5.3718938197e+00 -1.9158573833e+01 2.3517838582e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 -1.2537166229e+01 -5.3718938197e+00 +6.9206956141e+01 7.0538220551e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.79634802E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.33852059E-02 0.79634802E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.11084957E-01 0.79634802E+02</pdfrwt>
<totfact> 0.11557756E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.06428000e+01 7.54677100e-03 1.32723700e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +4.5596733601e+00 4.5596733601e+00 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -3.5656400710e+02 3.5656400710e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -3.5200433374e+02 3.6112368046e+02 8.0642802639e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 +1.2544535163e+01 -9.4642658733e+00 -9.7171069238e+00 1.8475926444e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 -1.2544535163e+01 +9.4642658733e+00 -3.4228722682e+02 3.4264775402e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.80642803E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.70148815E-03 0.80642803E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.54856005E-01 0.80642803E+02</pdfrwt>
<totfact> 0.62287787E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.02370000e+01 7.54677100e-03 1.32838000e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +8.3821951231e+00 8.3821951231e+00 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -1.9201343331e+02 1.9201343331e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -1.8363123819e+02 2.0039562844e+02 8.0237000550e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 +2.9417567102e+01 -7.9620169544e+00 -2.6653725410e+01 4.0487134332e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 -2.9417567102e+01 +7.9620169544e+00 -1.5697751278e+02 1.5990849411e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.80237001E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.12895685E-02 0.80237001E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.29540529E-01 0.80237001E+02</pdfrwt>
<totfact> 0.85816051E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.86159400e+01 7.54677100e-03 1.33302600e-01
-4 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +2.1344762845e+02 2.1344762845e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
3 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -7.2388549714e+00 7.2388549714e+00 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +2.0620877348e+02 2.2068648342e+02 7.8615937986e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -2.4649809042e+01 +6.5929319336e-01 +1.7173193280e+01 3.0049398010e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +2.4649809042e+01 -6.5929319336e-01 +1.8903558020e+02 1.9063708541e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.78615938E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 3 0.11136702E-02 0.78615938E+02</pdfrwt>
<pdfrwt beam="2"> 1 -4 0.32838092E-01 0.78615938E+02</pdfrwt>
<totfact> 0.33578661E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.77102300e+01 7.54677100e-03 1.33567800e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +2.0578338355e+01 2.0578338355e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -7.3364522220e+01 7.3364522220e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -5.2786183865e+01 9.3942860576e+01 7.7710229996e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 +2.8341407009e+01 -2.2515943449e+01 -4.3468670636e+01 5.6566141706e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 -2.8341407009e+01 +2.2515943449e+01 -9.3175132289e+00 3.7376718869e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.77710230E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.11286850E-01 0.77710230E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.31658982E-02 0.77710230E+02</pdfrwt>
<totfact> 0.15126046E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.93368600e+01 7.54677100e-03 1.33094400e-01
-4 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +5.0283838152e+00 5.0283838152e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
3 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -3.1294034688e+02 3.1294034688e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -3.0791196306e+02 3.1796873069e+02 7.9336855883e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 +1.7511477562e+00 +3.6559744084e+01 -2.1525127232e+02 2.1834099853e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 -1.7511477562e+00 -3.6559744084e+01 -9.2660690743e+01 9.9627732158e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.79336856E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 3 0.48144675E-01 0.79336856E+02</pdfrwt>
<pdfrwt beam="2"> 1 -4 0.77359740E-03 0.79336856E+02</pdfrwt>
<totfact> 0.30750554E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.63575700e+01 7.54677100e-03 1.31192000e-01
1 -1 0 0 501 0 +0.0000000000e+00 +0.0000000000e+00 +1.8245053256e+02 1.8245053256e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-2 -1 0 0 0 501 -0.0000000000e+00 -0.0000000000e+00 -1.0218701094e+01 1.0218701094e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +1.7223183147e+02 1.9266923366e+02 8.6357569598e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 -3.0898353924e+01 +2.3781142779e+01 +1.2750538929e+02 1.3333369913e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 +3.0898353924e+01 -2.3781142779e+01 +4.4726442183e+01 5.9335534525e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.86357570E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.28069310E-01 0.86357570E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.15721080E-02 0.86357570E+02</pdfrwt>
<totfact> 0.13353741E+05</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.07705100e+01 7.54677100e-03 1.32687900e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +1.2508417258e+02 1.2508417258e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -1.3038970603e+01 1.3038970603e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +1.1204520198e+02 1.3812314319e+02 8.0770510689e+01 0.0000e+00 0.0000e+00
13 1 3 3 0 0 -1.6575942885e+01 -1.0536926860e+01 -4.3207906651e+00 2.0111139753e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-14 1 3 3 0 0 +1.6575942885e+01 +1.0536926860e+01 +1.1636599264e+02 1.1801200343e+02 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.80770511E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.20059956E-02 0.80770511E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.19243718E-01 0.80770511E+02</pdfrwt>
<totfact> 0.97525944E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 7.86948700e+01 7.54677100e-03 1.33279700e-01
-4 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +5.8405656274e+01 5.8405656274e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
3 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -2.6508061677e+01 2.6508061677e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 +3.1897594597e+01 8.4913717952e+01 7.8694872484e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 +2.3095732847e-01 -2.5175907896e+01 -1.6678832960e+01 3.0200383252e+01 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 -2.3095732847e-01 +2.5175907896e+01 +4.8576427557e+01 5.4713334699e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.78694872E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 3 0.40781633E-02 0.78694872E+02</pdfrwt>
<pdfrwt beam="2"> 1 -4 0.89854856E-02 0.78694872E+02</pdfrwt>
<totfact> 0.46081604E+04</totfact>
</mgrwt>
</event>
<event>
5 1 +7.5707000e+03 8.31080200e+01 7.54677100e-03 1.32045600e-01
-2 -1 0 0 0 501 -0.0000000000e+00 +0.0000000000e+00 +8.5929357100e+00 8.5929357100e+00 0.0000000000e+00 0.0000e+00 1.0000e+00
1 -1 0 0 501 0 +0.0000000000e+00 -0.0000000000e+00 -2.0094830851e+02 2.0094830851e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-24 2 1 2 0 0 +0.0000000000e+00 +0.0000000000e+00 -1.9235537280e+02 2.0954124422e+02 8.3108023584e+01 0.0000e+00 0.0000e+00
11 1 3 3 0 0 +1.9609563584e+01 +3.3714325046e+01 -1.3232535004e+02 1.3795357538e+02 0.0000000000e+00 0.0000e+00 -1.0000e+00
-12 1 3 3 0 0 -1.9609563584e+01 -3.3714325046e+01 -6.0030022762e+01 7.1587668840e+01 0.0000000000e+00 0.0000e+00 1.0000e+00
<mgrwt>
<rscale> 0 0.83108024E+02</rscale>
<asrwt>0</asrwt>
<pdfrwt beam="1"> 1 1 0.30915124E-01 0.83108024E+02</pdfrwt>
<pdfrwt beam="2"> 1 -2 0.13219901E-02 0.83108024E+02</pdfrwt>
<totfact> 0.15079920E+05</totfact>
</mgrwt>