forked from afedynitch/particletools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParticleData.xml
9294 lines (8853 loc) · 593 KB
/
ParticleData.xml
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
<chapter name="Particle Data">
<h2>Particle Data</h2>
The structure and operation of the particle data table is described
<aloc href="ParticleDataScheme">here</aloc>. That page
also describes how default data properties can be changed. The
current page provides the actual default values.
<h3>Main settings</h3>
Apart from the data itself, the particle data table only contains
a few aspects that are available to change:
<modepick name="ParticleData:modeBreitWigner" default="4" min="0" max="4">
Selection of particle masses when the <code>mass(id)</code> is called
to provide a new mass:
<option value="0">
mass is fixed at the nominal <ei>m_0</ei> value.
</option>
<option value="1">
particles registered as having a mass width are given a mass
in the range <ei>m_min < m < m_max</ei>, according
to a truncated nonrelativistic Breit-Wigner, i.e. linear in <ei>m</ei>.
</option>
<option value="2">
as above, except that the width is made mass-dependent:
<ei>Gamma = Gamma_0 * sqrt( (m^2 - m_thr^2) / (m_0^2 - m_thr^2) )</ei>
where <ei>m</ei> is the current mass, <ei>m_0</ei> the nominal one and
<ei>m_thr</ei> is the mass threshold, given by the sum of the nominal
masses of the decay products. In order to decouple production and decay
the threshold is defined as the branching-ratio-weighted average over
all allowed decay channels.
</option>
<option value="3">
particles registered as having a mass width are given a mass
in the range <ei>m_min < m < m_max</ei>, according
to a truncated relativistic Breit-Wigner, i.e. quadratic in <ei>m</ei>.
</option>
<option value="4">
as 3, but the width is modified as for 2, and the current mass is used
for its phase-space prefactor, i.e. <ei>m_0 Gamma_0 -> m Gamma(m)</ei>.
</option>
<note>Note:</note> this mode only applies to normal hadronic
resonances like the <ei>rho</ei>. The more massive states of the
<code>isResonance()</code> type, like <ei>Z^0</ei> or top, are
considered separately.
</modepick>
<parm name="ParticleData:maxEnhanceBW" default="2.5" min="1." max="5.">
The modifications in options 2 and 4 above enhance the large-mass tail
of the Breit-Wigners (the mass spectrum develops a dm/m divergence).
However, we expect form factors to dampen this tail at masses some distance
above the nominal one, so cut off the rise by requiring the actual
Breit-Wigner weight not to be more than a factor <code> maxEnhanceBW</code>
above the one obtained with options 1 or 3, respectively. This also
opens up for a simpler technical handling of mass selection in options
2 and 4, by using standard hit-and-miss Monte Carlo.
</parm>
<p/>
Since running masses are only calculated for the six quark flavours,
e.g. to obtain couplings to the Higgs boson(s), there is not an entry
in the normal tables for each particles, but only the six MSbar mass
values below, used as starting point for the running. In addition you
can pick an <ei>alpha_s(M_Z)</ei>, which is converted into a first-order
five-flavour Lambda that is used to determine the rate of the running.
(Without any match to four flavours below <ei>m_b</ei>; if desired, this
can be fixed by slightly shifted default mass values, since the routines
never should be called below the <ei>m_b</ei> scale anyway.)
<parm name="ParticleData:mdRun" default="0.006" min="0.003" max="0.008">
the d quark MSbar mass at 2 GeV scale.
</parm>
<parm name="ParticleData:muRun" default="0.003" min="0.001" max="0.006">
the u quark MSbar mass at 2 GeV scale.
</parm>
<parm name="ParticleData:msRun" default="0.095" min="0.060" max="0.150">
</parm>
the s quark MSbar mass at 2 GeV scale.
<parm name="ParticleData:mcRun" default="1.25" min="1.00" max="1.50">
</parm>
the c quark MSbar mass at the mass scale itself.
<parm name="ParticleData:mbRun" default="4.20" min="4.00" max="4.50">
the b quark MSbar mass at the mass scale itself.
</parm>
<parm name="ParticleData:mtRun" default="165.0" min="150.0" max="175.0">
the t quark MSbar mass at the mass scale itself.
</parm>
<parm name="ParticleData:alphaSvalueMRun" default="0.125" min="0.10" max="0.20">
the <ei>alpha_s(M_Z)</ei> value used to define tha rate at which MSbar
masses run.
</parm>
<h3>Comments on the data</h3>
The starting point for the current data is the 2006 Review of Particle
Physics <ref>Yao06</ref>. All known particle masses, widths and lifetimes
have been set accordingly, while not-yet-measured particles are kept at
their values from PYTHIA 6. Decay channels and their branching
ratios remain a major worry: many particles do not have one single solidly
measured branching ratio, and many further do not have known branching
ratios that add up to (the neighbourhood of) unity.
<p/>
Uncertainties are especially big for the scalar, pseudovector and tensor
<ei>L = 1</ei> multiplets available in PYTHIA. We note that
some distributions become better described when these multiplets are
included in the generation, while others become worse. It is tempting to
associate this lackluster performance with the primitive knowledge.
Not even the multiplets themselves are particularly well known.
It used to be that the <ei>a_0(980)</ei> and <ei>f_0(980)</ei>
were considered to be members of the scalar multiplet. Nowadays they are
commonly assumed to be either four-quark states or of some other exotic
character. This means that the PYTHIA 8 PDG particle codes
have been changed for these particles, relative to what was used in
PYTHIA 6 based on previous PDG editions. Specifically their
numbers are now in the 9000000 series, and they have been replaced in the
scalar multiplet by <ei>a_0(1450)</ei> and <ei>f_0(1370)</ei>.
<p/>
For charm and bottom mesons the jungle of partial measurements makes
it very difficult to construct fully consistent sets of decay channels.
This part of the program has not yet been brought up to date to the
2006 RPP. Instead the LHCb decay tables (for EvtGen, but without
using the EvtGen matrix-element machinery) and the DELPHI tune for
PYTHIA 6 is being used. (This also includes a few non-c/b
hadrons that only occur in the c/b decay tables.) This has the
advantage that many tests have been made for consistency, but the
disadvantage that it is not always in agreement with the latest
measurements of some specific decay channels. The decays based
on the LHCb tables (with some modifications) are 411, 421, 431, 441,
445, 511, 521, 531, 541, 3124, 4122, 4124, 5122, 10441, 10443, 13122,
14122, 20443, 23122, 30313, 30323, 30443, 33122, 100113, 100213, 100441,
100443, 100553, 9000111, 9000211. Correspondingly the decays based on
the DELPHI tables are 415, 425, 435, 515, 525, 535, 4132, 4232, 4332,
5132, 5232 and 5332.
<h3>The data itself</h3>
Here comes the default particle data used in the program. Do not touch.
The meaning of the various properties and the format used are explained
<aloc href="ParticleDataScheme">here</aloc> and the
<code>meMode</code> codes <aloc href="ParticleDecays">here</aloc>.
<particle id="0" name="void" spinType="0" chargeType="0" colType="0" m0="0.0">
</particle>
<particle id="1" name="d" antiName="dbar" spinType="2" chargeType="-1" colType="1"
m0="0.33000">
</particle>
<particle id="2" name="u" antiName="ubar" spinType="2" chargeType="2" colType="1"
m0="0.33000">
</particle>
<particle id="3" name="s" antiName="sbar" spinType="2" chargeType="-1" colType="1"
m0="0.50000">
</particle>
<particle id="4" name="c" antiName="cbar" spinType="2" chargeType="2" colType="1"
m0="1.50000">
</particle>
<particle id="5" name="b" antiName="bbar" spinType="2" chargeType="-1" colType="1"
m0="4.80000">
</particle>
<particle id="6" name="t" antiName="tbar" spinType="2" chargeType="2" colType="1"
m0="171.00000" mWidth="1.40000" mMin="86.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.0000300" products="24 1"/>
<channel onMode="1" bRatio="0.0017650" products="24 3"/>
<channel onMode="1" bRatio="0.9982050" products="24 5"/>
<channel onMode="0" bRatio="0.0000000" products="37 5"/>
</particle>
<particle id="7" name="b'" antiName="b'bar" spinType="2" chargeType="-1" colType="1"
m0="400.00000">
<channel onMode="1" bRatio="0.0000000" products="-24 2"/>
<channel onMode="1" bRatio="0.0000000" products="-24 4"/>
<channel onMode="1" bRatio="0.0000000" products="-24 6"/>
<channel onMode="1" bRatio="1.0000000" products="-24 8"/>
</particle>
<particle id="8" name="t'" antiName="t'bar" spinType="2" chargeType="2" colType="1"
m0="400.00000">
<channel onMode="1" bRatio="0.0000000" products="24 1"/>
<channel onMode="1" bRatio="0.0000000" products="24 3"/>
<channel onMode="1" bRatio="0.0000000" products="24 5"/>
<channel onMode="1" bRatio="1.0000000" products="24 7"/>
</particle>
<particle id="11" name="e-" antiName="e+" spinType="2" chargeType="-3" colType="0"
m0="5.110e-04">
</particle>
<particle id="12" name="nu_e" antiName="nu_ebar" spinType="2" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="13" name="mu-" antiName="mu+" spinType="2" chargeType="-3" colType="0"
m0="0.10566" tau0="6.58654e+05">
<channel onMode="1" bRatio="1.0000000" meMode="22" products="-12 11 14"/>
</particle>
<particle id="14" name="nu_mu" antiName="nu_mubar" spinType="2" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="15" name="tau-" antiName="tau+" spinType="2" chargeType="-3" colType="0"
m0="1.77682" tau0="8.71100e-02">
<channel onMode="1" bRatio="0.108924" meMode="1521" products="16 -211"/>
<channel onMode="1" bRatio="0.006885" meMode="1521" products="16 -321"/>
<channel onMode="1" bRatio="0.178345" meMode="1531" products="16 11 -12"/>
<channel onMode="1" bRatio="0.173545" meMode="1531" products="16 13 -14"/>
<channel onMode="1" bRatio="0.254890" meMode="1532" products="16 111 -211"/>
<channel onMode="1" bRatio="0.001513" meMode="1532" products="16 311 -321"/>
<channel onMode="1" bRatio="0.000263" meMode="1532" products="16 221 -321"/>
<channel onMode="1" bRatio="0.008957" meMode="1533" products="16 -211 -311"/>
<channel onMode="1" bRatio="0.004491" meMode="1533" products="16 111 -321"/>
<channel onMode="1" bRatio="0.092370" meMode="1541" products="16 111 111 -211"/>
<channel onMode="1" bRatio="0.089813" meMode="1541" products="16 -211 -211 211"/>
<channel onMode="1" bRatio="0.003757" meMode="1542" products="16 111 -211 -311"/>
<channel onMode="1" bRatio="0.003292" meMode="1542" products="16 -211 211 -321"/>
<channel onMode="1" bRatio="0.001519" meMode="1542" products="16 -211 -321 321"/>
<channel onMode="1" bRatio="0.001518" meMode="1542" products="16 111 311 -321"/>
<channel onMode="1" bRatio="0.001087" meMode="1542" products="16 130 -211 310"/>
<channel onMode="1" bRatio="0.000555" meMode="1542" products="16 111 111 -321"/>
<channel onMode="1" bRatio="0.000235" meMode="1542" products="16 130 130 -211"/>
<channel onMode="1" bRatio="0.000235" meMode="1542" products="16 -211 310 310"/>
<channel onMode="1" bRatio="0.001744" meMode="1543" products="16 111 -211 221"/>
<channel onMode="1" bRatio="0.001762" meMode="1544" products="16 22 111 -211"/>
<channel onMode="1" bRatio="0.044435" meMode="1551" products="16 111 -211 -211 211"/>
<channel onMode="1" bRatio="0.010313" meMode="1551" products="16 111 111 111 -211"/>
<channel onMode="1" bRatio="0.004935" meMode="1561" products="16 111 111 -211 -211 211"/>
<channel onMode="1" bRatio="0.000957" meMode="1561" products="16 111 111 111 111 -211"/>
<channel onMode="1" bRatio="0.000834" meMode="1561" products="16 -211 -211 -211 211 211"/>
<channel onMode="1" bRatio="0.000225" meMode="0" products="16 -211 -211 211 221"/>
<channel onMode="1" bRatio="0.000145" meMode="0" products="16 111 111 -211 221"/>
<channel onMode="1" bRatio="0.000135" meMode="0" products="16 111 111 -211 223"/>
<channel onMode="1" bRatio="0.000118" meMode="0" products="16 -211 -211 211 223"/>
<channel onMode="1" bRatio="0.000400" meMode="0" products="16 223 -321"/>
<channel onMode="1" bRatio="0.000397" meMode="0" products="16 111 111 111 -321"/>
<channel onMode="1" bRatio="0.000307" meMode="0" products="16 111 -211 211 -321"/>
<channel onMode="1" bRatio="0.000280" meMode="0" products="16 221 -323"/>
<channel onMode="1" bRatio="0.000238" meMode="0" products="16 111 111 -211 -311"/>
<channel onMode="1" bRatio="0.000225" meMode="0" products="16 -211 -211 211 -311"/>
<channel onMode="1" bRatio="0.000297" meMode="0" products="16 111 -211 -311 311"/>
<channel onMode="1" bRatio="0.000059" meMode="0" products="16 111 -211 -321 321"/>
</particle>
<particle id="16" name="nu_tau" antiName="nu_taubar" spinType="2" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="17" name="tau'-" antiName="tau'+" spinType="2" chargeType="-3" colType="0"
m0="400.00000">
<channel onMode="1" bRatio="1.0000000" products="-24 18"/>
</particle>
<particle id="18" name="nu'_tau" antiName="nu'_taubar" spinType="2" chargeType="0" colType="0"
m0="400.00000">
<channel onMode="1" bRatio="1.0000000" products="24 17"/>
</particle>
<particle id="21" name="g" spinType="3" chargeType="0" colType="2"
m0="0.00000">
</particle>
<particle id="22" name="gamma" spinType="3" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="23" name="Z0" spinType="3" chargeType="0" colType="0"
m0="91.18760" mWidth="2.49520" mMin="10.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.1539950" products="1 -1"/>
<channel onMode="1" bRatio="0.1194200" products="2 -2"/>
<channel onMode="1" bRatio="0.1539840" products="3 -3"/>
<channel onMode="1" bRatio="0.1192590" products="4 -4"/>
<channel onMode="1" bRatio="0.1522720" products="5 -5"/>
<channel onMode="1" bRatio="0.0335760" products="11 -11"/>
<channel onMode="1" bRatio="0.0668060" products="12 -12"/>
<channel onMode="1" bRatio="0.0335760" products="13 -13"/>
<channel onMode="1" bRatio="0.0668060" products="14 -14"/>
<channel onMode="1" bRatio="0.0335000" products="15 -15"/>
<channel onMode="1" bRatio="0.0668060" products="16 -16"/>
</particle>
<particle id="24" name="W+" antiName="W-" spinType="3" chargeType="3" colType="0"
m0="80.38500" mWidth="2.08500" mMin="10.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.3213690" products="-1 2"/>
<channel onMode="1" bRatio="0.0164940" products="-1 4"/>
<channel onMode="1" bRatio="0.0165020" products="-3 2"/>
<channel onMode="1" bRatio="0.3206150" products="-3 4"/>
<channel onMode="1" bRatio="0.0000100" products="-5 2"/>
<channel onMode="1" bRatio="0.0005910" products="-5 4"/>
<channel onMode="1" bRatio="0.1081660" products="-11 12"/>
<channel onMode="1" bRatio="0.1081660" products="-13 14"/>
<channel onMode="1" bRatio="0.1080870" products="-15 16"/>
</particle>
<particle id="25" name="h0(H_1)" spinType="1" chargeType="0" colType="0"
m0="125.00000" mWidth="0.00374" mMin="50.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.0000009" products="1 -1"/>
<channel onMode="1" bRatio="0.0000002" products="2 -2"/>
<channel onMode="1" bRatio="0.0002361" products="3 -3"/>
<channel onMode="1" bRatio="0.0335602" products="4 -4"/>
<channel onMode="1" bRatio="0.5876728" products="5 -5"/>
<channel onMode="1" bRatio="0.0000000" products="6 -6"/>
<channel onMode="1" bRatio="0.0000000" products="11 -11"/>
<channel onMode="1" bRatio="0.0002445" products="13 -13"/>
<channel onMode="1" bRatio="0.0690800" products="15 -15"/>
<channel onMode="1" bRatio="0.0630585" products="21 21"/>
<channel onMode="1" bRatio="0.0028438" products="22 22"/>
<channel onMode="1" bRatio="0.0017601" products="22 23"/>
<channel onMode="1" bRatio="0.0259708" products="23 23"/>
<channel onMode="1" bRatio="0.2155720" products="24 -24"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000022 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000025"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000025"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000035"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000024 -1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000024 -1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000037 -1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000037 -1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000001 -1000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000001 -2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000001 -2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000001 2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000002 -1000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000002 -2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000002 -2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000002 2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000003 -1000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000003 -2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000003 -2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000003 2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000004 -1000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000004 -2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000004 -2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000004 2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000005 -1000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000005 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000005 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000005 2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -1000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000006 -2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000006 2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000011 -1000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000011 -2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000011 -2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000011 2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000012 -1000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000012 -2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000012 -2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000012 2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000013 -1000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000013 -2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000013 -2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000013 2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000014 -1000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000014 -2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000014 -2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000014 2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000015 -1000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000015 -2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000015 -2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000015 2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000016 -1000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000016 -2000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000016 -2000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000016 2000016"/>
</particle>
<particle id="32" name="Z'0" spinType="3" chargeType="0" colType="0"
m0="500.00000" mWidth="14.54029" mMin="10.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.1458350" products="1 -1"/>
<channel onMode="1" bRatio="0.1132760" products="2 -2"/>
<channel onMode="1" bRatio="0.1458350" products="3 -3"/>
<channel onMode="1" bRatio="0.1132710" products="4 -4"/>
<channel onMode="1" bRatio="0.1457810" products="5 -5"/>
<channel onMode="1" bRatio="0.0490020" products="6 -6"/>
<channel onMode="1" bRatio="0.0320250" products="11 -11"/>
<channel onMode="1" bRatio="0.0636420" products="12 -12"/>
<channel onMode="1" bRatio="0.0320250" products="13 -13"/>
<channel onMode="1" bRatio="0.0636420" products="14 -14"/>
<channel onMode="1" bRatio="0.0320220" products="15 -15"/>
<channel onMode="1" bRatio="0.0636420" products="16 -16"/>
<channel onMode="1" bRatio="0.0000000" products="24 -24"/>
</particle>
<particle id="33" name="Z''0" spinType="3" chargeType="0" colType="0"
m0="900.00000">
</particle>
<particle id="34" name="W'+" antiName="W'-" spinType="3" chargeType="3" colType="0"
m0="500.00000" mWidth="16.66099" mMin="10.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.2512250" products="-1 2"/>
<channel onMode="1" bRatio="0.0129000" products="-1 4"/>
<channel onMode="1" bRatio="0.0000060" products="-1 6"/>
<channel onMode="1" bRatio="0.0129000" products="-3 2"/>
<channel onMode="1" bRatio="0.2507640" products="-3 4"/>
<channel onMode="1" bRatio="0.0003800" products="-3 6"/>
<channel onMode="1" bRatio="0.0000080" products="-5 2"/>
<channel onMode="1" bRatio="0.0004650" products="-5 4"/>
<channel onMode="1" bRatio="0.2154180" products="-5 6"/>
<channel onMode="1" bRatio="0.0853120" products="-11 12"/>
<channel onMode="1" bRatio="0.0853120" products="-13 14"/>
<channel onMode="1" bRatio="0.0853100" products="-15 16"/>
<channel onMode="1" bRatio="0.0000000" products="24 23"/>
</particle>
<particle id="35" name="H0(H_2)" spinType="1" chargeType="0" colType="0"
m0="300.00000" mWidth="8.38842" mMin="50.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.0000000" products="1 -1"/>
<channel onMode="1" bRatio="0.0000000" products="2 -2"/>
<channel onMode="1" bRatio="0.0000000" products="3 -3"/>
<channel onMode="1" bRatio="0.0000490" products="4 -4"/>
<channel onMode="1" bRatio="0.0007740" products="5 -5"/>
<channel onMode="1" bRatio="0.0000000" products="6 -6"/>
<channel onMode="1" bRatio="0.0000000" products="11 -11"/>
<channel onMode="1" bRatio="0.0000000" products="13 -13"/>
<channel onMode="1" bRatio="0.0000740" products="15 -15"/>
<channel onMode="1" bRatio="0.0004170" products="21 21"/>
<channel onMode="1" bRatio="0.0000150" products="22 22"/>
<channel onMode="1" bRatio="0.0000610" products="22 23"/>
<channel onMode="1" bRatio="0.3067100" products="23 23"/>
<channel onMode="1" bRatio="0.6890110" products="24 -24"/>
<channel onMode="1" bRatio="0.0000000" products="23 25"/>
<channel onMode="1" bRatio="0.0028890" products="25 25"/>
<channel onMode="1" bRatio="0.0000000" products="24 -37"/>
<channel onMode="1" bRatio="0.0000000" products="37 -24"/>
<channel onMode="1" bRatio="0.0000000" products="23 36"/>
<channel onMode="1" bRatio="0.0000000" products="25 36"/>
<channel onMode="1" bRatio="0.0000000" products="36 36"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000022 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000025"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000025"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000035"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000024 -1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000024 -1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000037 -1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000037 -1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000001 -1000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000001 -2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000001 -2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000001 2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000002 -1000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000002 -2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000002 -2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000002 2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000003 -1000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000003 -2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000003 -2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000003 2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000004 -1000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000004 -2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000004 -2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000004 2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000005 -1000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000005 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000005 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000005 2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -1000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000006 -2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000006 2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000011 -1000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000011 -2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000011 -2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000011 2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000012 -1000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000012 -2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000012 -2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000012 2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000013 -1000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000013 -2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000013 -2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000013 2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000014 -1000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000014 -2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000014 -2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000014 2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000015 -1000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000015 -2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000015 -2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000015 2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000016 -1000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000016 -2000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000016 -2000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000016 2000016"/>
</particle>
<particle id="36" name="A0(H_3)" spinType="1" chargeType="0" colType="0"
m0="300.00000" mWidth="3.37520" mMin="50.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.0000000" products="1 -1"/>
<channel onMode="1" bRatio="0.0000000" products="2 -2"/>
<channel onMode="1" bRatio="0.0000010" products="3 -3"/>
<channel onMode="1" bRatio="0.0001210" products="4 -4"/>
<channel onMode="1" bRatio="0.0019240" products="5 -5"/>
<channel onMode="1" bRatio="0.0000000" products="6 -6"/>
<channel onMode="1" bRatio="0.0000000" products="11 -11"/>
<channel onMode="1" bRatio="0.0000010" products="13 -13"/>
<channel onMode="1" bRatio="0.0001840" products="15 -15"/>
<channel onMode="1" bRatio="0.0031060" products="21 21"/>
<channel onMode="1" bRatio="0.0000150" products="22 22"/>
<channel onMode="1" bRatio="0.0000030" products="22 23"/>
<channel onMode="1" bRatio="0.0000000" products="23 23"/>
<channel onMode="1" bRatio="0.0000000" products="24 -24"/>
<channel onMode="1" bRatio="0.9946460" products="23 25"/>
<channel onMode="1" bRatio="0.0000000" products="25 25"/>
<channel onMode="1" bRatio="0.0000000" products="24 -37"/>
<channel onMode="1" bRatio="0.0000000" products="37 -24"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000022 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000025"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000022"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000023"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000025"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000035"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000024 -1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000024 -1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000037 -1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000037 -1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000001 -1000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000001 -2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000001 -2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000001 2000001"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000002 -1000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000002 -2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000002 -2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000002 2000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000003 -1000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000003 -2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000003 -2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000003 2000003"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000004 -1000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000004 -2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000004 -2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000004 2000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000005 -1000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000005 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000005 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000005 2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -1000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000006 -2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000006 2000006"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000011 -1000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000011 -2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000011 -2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000011 2000011"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000012 -1000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000012 -2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000012 -2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000012 2000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000013 -1000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000013 -2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000013 -2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000013 2000013"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000014 -1000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000014 -2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000014 -2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000014 2000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000015 -1000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000015 -2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000015 -2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000015 2000015"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000016 -1000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000016 -2000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000016 -2000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000016 2000016"/>
</particle>
<particle id="37" name="H+" antiName="H-" spinType="1" chargeType="3" colType="0"
m0="300.00000" mWidth="4.17669" mMin="50.00000" mMax="0.00000">
<channel onMode="1" bRatio="0.0000000" products="-1 2"/>
<channel onMode="1" bRatio="0.0000210" products="-3 4"/>
<channel onMode="1" bRatio="0.0901350" products="-5 6"/>
<channel onMode="1" bRatio="0.0000000" products="-11 12"/>
<channel onMode="1" bRatio="0.0000130" products="-13 14"/>
<channel onMode="1" bRatio="0.0037140" products="-15 16"/>
<channel onMode="1" bRatio="0.9061170" products="24 25"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000022 1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000022 1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000023 1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000025 1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000024"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000035 1000037"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -1000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000006 -1000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="1000006 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="2000006 -2000005"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000001 1000002"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000003 1000004"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000011 1000012"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000013 1000014"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-1000015 1000016"/>
<channel onMode="1" bRatio="0.0000000" meMode="103" products="-2000015 1000016"/>
</particle>
<particle id="39" name="Graviton" spinType="5" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="40" name="BlackHole" spinType="0" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="41" name="R0" antiName="Rbar0" spinType="3" chargeType="0" colType="0"
m0="5.000e+03" mWidth="4.173e+02" mMin="1.000e+02" mMax="0.000e+00">
<channel onMode="1" bRatio="0.2151190" products="1 -3"/>
<channel onMode="1" bRatio="0.2151190" products="2 -4"/>
<channel onMode="1" bRatio="0.2151190" products="3 -5"/>
<channel onMode="1" bRatio="0.2147240" products="4 -6"/>
<channel onMode="1" bRatio="0.0699600" products="11 -13"/>
<channel onMode="1" bRatio="0.0699590" products="13 -15"/>
</particle>
<particle id="42" name="LQ_ue" antiName="LQ_uebar" spinType="1" chargeType="-1" colType="1"
m0="200.00000" mWidth="0.39162" mMin="50.00000" mMax="0.00000">
<channel onMode="1" bRatio="1.0000000" products="2 11"/>
</particle>
<particle id="81" name="specflav" spinType="0" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="82" name="rndmflavq" antiName="rndmflavqbar" spinType="0" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="83" name="rndmflavg" antiName="rndmflavgbar" spinType="0" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="90" name="system" spinType="0" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="110" name="Reggeon" spinType="0" chargeType="0" colType="0"
m0="0.00000">
</particle>
<particle id="111" name="pi0" spinType="1" chargeType="0" colType="0"
m0="0.13498" tau0="2.55313e-05">
<channel onMode="1" bRatio="0.9879900" products="22 22"/>
<channel onMode="1" bRatio="0.0119800" meMode="11" products="22 11 -11"/>
<channel onMode="1" bRatio="0.0000300" meMode="13" products="11 -11 11 -11"/>
</particle>
<particle id="113" name="rho0" spinType="3" chargeType="0" colType="0"
m0="0.77549" mWidth="0.14910" mMin="0.30000" mMax="1.50000">
<channel onMode="1" bRatio="0.9988485" meMode="2" products="211 -211"/>
<channel onMode="1" bRatio="0.0006000" products="111 22"/>
<channel onMode="1" bRatio="0.0002950" products="221 22"/>
<channel onMode="1" bRatio="0.0001010" meMode="1" products="211 -211 111"/>
<channel onMode="1" bRatio="0.0000470" products="11 -11"/>
<channel onMode="1" bRatio="0.0000455" products="13 -13"/>
<channel onMode="1" bRatio="0.0000450" products="111 111 22"/>
<channel onMode="1" bRatio="0.0000180" products="211 -211 211 -211"/>
</particle>
<particle id="115" name="a_20" spinType="5" chargeType="0" colType="0"
m0="1.31830" mWidth="0.10700" mMin="1.00000" mMax="1.70000">
<channel onMode="1" bRatio="0.3483455" products="213 -211"/>
<channel onMode="1" bRatio="0.3483455" products="-213 211"/>
<channel onMode="1" bRatio="0.1440000" products="221 111"/>
<channel onMode="1" bRatio="0.1050000" products="223 211 -211"/>
<channel onMode="1" bRatio="0.0245000" products="321 -321"/>
<channel onMode="1" bRatio="0.0122500" products="130 130"/>
<channel onMode="1" bRatio="0.0122500" products="310 310"/>
<channel onMode="1" bRatio="0.0053000" products="331 111"/>
<channel onMode="1" bRatio="0.0000090" products="22 22"/>
</particle>
<particle id="130" name="K_L0" spinType="1" chargeType="0" colType="0"
m0="0.49761" tau0="1.53300e+04">
<channel onMode="1" bRatio="0.1955770" products="111 111 111"/>
<channel onMode="1" bRatio="0.1255900" products="211 -211 111"/>
<channel onMode="1" bRatio="0.2026300" meMode="22" products="-12 11 211"/>
<channel onMode="1" bRatio="0.2026300" meMode="22" products="12 -11 -211"/>
<channel onMode="1" bRatio="0.1350900" meMode="22" products="-14 13 211"/>
<channel onMode="1" bRatio="0.1350900" meMode="22" products="14 -13 -211"/>
<channel onMode="1" bRatio="0.0019760" products="211 -211"/>
<channel onMode="1" bRatio="0.0008690" products="111 111"/>
<channel onMode="1" bRatio="0.0005480" products="22 22"/>
</particle>
<particle id="211" name="pi+" antiName="pi-" spinType="1" chargeType="3" colType="0"
m0="0.13957" tau0="7.80450e+03">
<channel onMode="1" bRatio="0.9998770" products="-13 14"/>
<channel onMode="1" bRatio="0.0001230" products="-11 12"/>
</particle>
<particle id="213" name="rho+" antiName="rho-" spinType="3" chargeType="3" colType="0"
m0="0.77549" mWidth="0.14910" mMin="0.30000" mMax="1.50000">
<channel onMode="1" bRatio="0.9995500" meMode="2" products="211 111"/>
<channel onMode="1" bRatio="0.0004500" products="211 22"/>
</particle>
<particle id="215" name="a_2+" antiName="a_2-" spinType="5" chargeType="3" colType="0"
m0="1.31830" mWidth="0.10700" mMin="1.00000" mMax="1.70000">
<channel onMode="1" bRatio="0.3480100" products="213 111"/>
<channel onMode="1" bRatio="0.3480100" products="113 211"/>
<channel onMode="1" bRatio="0.1440000" products="221 211"/>
<channel onMode="1" bRatio="0.1040000" products="223 211 111"/>
<channel onMode="1" bRatio="0.0480000" products="321 -311"/>
<channel onMode="1" bRatio="0.0053000" products="331 211"/>
<channel onMode="1" bRatio="0.0026800" products="211 22"/>
</particle>
<particle id="221" name="eta" spinType="1" chargeType="0" colType="0"
m0="0.54785" mWidth="0.00000131">
<channel onMode="1" bRatio="0.3938240" products="22 22"/>
<channel onMode="1" bRatio="0.3251200" products="111 111 111"/>
<channel onMode="1" bRatio="0.0004400" products="111 22 22"/>
<channel onMode="1" bRatio="0.2270000" products="211 -211 111"/>
<channel onMode="1" bRatio="0.0469000" products="211 -211 22"/>
<channel onMode="1" bRatio="0.0060000" meMode="11" products="22 11 -11"/>
<channel onMode="1" bRatio="0.0003100" meMode="11" products="22 13 -13"/>
<channel onMode="1" bRatio="0.0000060" products="13 -13"/>
<channel onMode="1" bRatio="0.0004000" meMode="12" products="211 -211 11 -11"/>
</particle>
<particle id="223" name="omega" spinType="3" chargeType="0" colType="0"
m0="0.78265" mWidth="0.00849" mMin="0.50000" mMax="1.10000">
<channel onMode="1" bRatio="0.8924150" meMode="1" products="211 -211 111"/>
<channel onMode="1" bRatio="0.0890000" products="111 22"/>
<channel onMode="1" bRatio="0.0170000" meMode="2" products="211 -211"/>
<channel onMode="1" bRatio="0.0004900" products="221 22"/>
<channel onMode="1" bRatio="0.0007700" meMode="11" products="111 11 -11"/>
<channel onMode="1" bRatio="0.0000960" meMode="11" products="111 13 -13"/>
<channel onMode="1" bRatio="0.0000720" products="11 -11"/>
<channel onMode="1" bRatio="0.0000900" products="13 -13"/>
<channel onMode="1" bRatio="0.0000670" products="111 111 22"/>
</particle>
<particle id="225" name="f_2" spinType="5" chargeType="0" colType="0"
m0="1.27510" mWidth="0.18510" mMin="0.60000" mMax="2.00000">
<channel onMode="1" bRatio="0.5653260" products="211 -211"/>
<channel onMode="1" bRatio="0.2826600" products="111 111"/>
<channel onMode="1" bRatio="0.0710000" products="211 -211 111 111"/>
<channel onMode="1" bRatio="0.0280000" products="211 -211 211 -211"/>
<channel onMode="1" bRatio="0.0230000" products="321 -321"/>
<channel onMode="1" bRatio="0.0115000" products="130 130"/>
<channel onMode="1" bRatio="0.0115000" products="310 310"/>
<channel onMode="1" bRatio="0.0040000" products="221 221"/>
<channel onMode="1" bRatio="0.0030000" products="111 111 111 111"/>
<channel onMode="1" bRatio="0.0000140" products="22 22"/>
</particle>
<particle id="310" name="K_S0" spinType="1" chargeType="0" colType="0"
m0="0.49761" tau0="2.68420e+01">
<channel onMode="1" bRatio="0.6923500" products="211 -211"/>
<channel onMode="1" bRatio="0.3069000" products="111 111"/>
<channel onMode="1" bRatio="0.0000470" meMode="12" products="211 -211 11 -11"/>
<channel onMode="1" bRatio="0.0003500" meMode="22" products="-12 11 211"/>
<channel onMode="1" bRatio="0.0003500" meMode="22" products="12 -11 -211"/>
<channel onMode="1" bRatio="0.0000030" products="22 22"/>
</particle>
<particle id="311" name="K0" antiName="Kbar0" spinType="1" chargeType="0" colType="0"
m0="0.49761">
<channel onMode="1" bRatio="0.5000000" products="130"/>
<channel onMode="1" bRatio="0.5000000" products="310"/>
</particle>
<particle id="313" name="K*0" antiName="K*bar0" spinType="3" chargeType="0" colType="0"
m0="0.89594" mWidth="0.04870" mMin="0.65000" mMax="1.20000">
<channel onMode="1" bRatio="0.6650000" meMode="2" products="321 -211"/>
<channel onMode="1" bRatio="0.3326900" meMode="2" products="311 111"/>
<channel onMode="1" bRatio="0.0023100" products="311 22"/>
</particle>
<particle id="315" name="K*_2(1430)0" antiName="K*_2(1430)bar0" spinType="5" chargeType="0" colType="0"
m0="1.43240" mWidth="0.10900" mMin="1.10000" mMax="1.80000">
<channel onMode="1" bRatio="0.3340000" products="321 -211"/>
<channel onMode="1" bRatio="0.1670000" products="311 111"/>
<channel onMode="1" bRatio="0.1650000" products="323 -211"/>
<channel onMode="1" bRatio="0.0825000" products="313 111"/>
<channel onMode="1" bRatio="0.0890000" products="323 -211 111"/>
<channel onMode="1" bRatio="0.0450000" products="313 211 -211"/>
<channel onMode="1" bRatio="0.0580000" products="321 -213"/>
<channel onMode="1" bRatio="0.0290000" products="311 113"/>
<channel onMode="1" bRatio="0.0290000" products="311 223"/>
<channel onMode="1" bRatio="0.0015000" products="311 221"/>
</particle>
<particle id="321" name="K+" antiName="K-" spinType="1" chargeType="3" colType="0"
m0="0.49368" tau0="3.71300e+03">
<channel onMode="1" bRatio="0.6343000" products="-13 14"/>
<channel onMode="1" bRatio="0.0000150" products="-11 12"/>
<channel onMode="1" bRatio="0.2091100" products="211 111"/>
<channel onMode="1" bRatio="0.0559000" products="211 211 -211"/>
<channel onMode="1" bRatio="0.0175700" products="211 111 111"/>
<channel onMode="1" bRatio="0.0498000" meMode="22" products="12 -11 111"/>
<channel onMode="1" bRatio="0.0332000" meMode="22" products="14 -13 111"/>
<channel onMode="1" bRatio="0.0000220" products="-11 12 111 111"/>
<channel onMode="1" bRatio="0.0000410" products="-11 12 211 -211"/>
<channel onMode="1" bRatio="0.0000140" products="-13 14 111 111"/>
<channel onMode="1" bRatio="0.0000280" products="-13 14 211 -211"/>
</particle>
<particle id="323" name="K*+" antiName="K*-" spinType="3" chargeType="3" colType="0"
m0="0.89166" mWidth="0.05080" mMin="0.65000" mMax="1.20000">
<channel onMode="1" bRatio="0.6660000" meMode="2" products="311 211"/>
<channel onMode="1" bRatio="0.3330000" meMode="2" products="321 111"/>
<channel onMode="1" bRatio="0.0010000" products="321 22"/>
</particle>
<particle id="325" name="K*_2(1430)+" antiName="K*_2(1430)-" spinType="5" chargeType="3" colType="0"
m0="1.42560" mWidth="0.09850" mMin="1.10000" mMax="1.80000">
<channel onMode="1" bRatio="0.3330000" products="311 211"/>
<channel onMode="1" bRatio="0.1660000" products="321 111"/>
<channel onMode="1" bRatio="0.1647000" products="313 211"/>
<channel onMode="1" bRatio="0.0824000" products="323 111"/>
<channel onMode="1" bRatio="0.0890000" products="313 211 111"/>
<channel onMode="1" bRatio="0.0450000" products="323 211 -211"/>
<channel onMode="1" bRatio="0.0580000" products="311 213"/>
<channel onMode="1" bRatio="0.0290000" products="321 113"/>
<channel onMode="1" bRatio="0.0290000" products="321 223"/>
<channel onMode="1" bRatio="0.0015000" products="321 221"/>
<channel onMode="1" bRatio="0.0024000" products="321 22"/>
</particle>
<particle id="331" name="eta'" spinType="1" chargeType="0" colType="0"
m0="0.95778" mWidth="0.00020" mMin="0.95578" mMax="0.95978">
<channel onMode="1" bRatio="0.4449000" products="211 -211 221"/>
<channel onMode="1" bRatio="0.2939500" products="113 22"/>
<channel onMode="1" bRatio="0.2080000" products="111 111 221"/>
<channel onMode="1" bRatio="0.0303000" products="223 22"/>
<channel onMode="1" bRatio="0.0212000" products="22 22"/>
<channel onMode="1" bRatio="0.0015500" products="111 111 111"/>
<channel onMode="1" bRatio="0.0001000" products="13 -13 22"/>
</particle>
<particle id="333" name="phi" spinType="3" chargeType="0" colType="0"
m0="1.01946" mWidth="0.00426" mMin="1.00000" mMax="1.04000">
<channel onMode="1" bRatio="0.4919270" meMode="2" products="321 -321"/>
<channel onMode="1" bRatio="0.3400000" meMode="2" products="130 310"/>
<channel onMode="1" bRatio="0.0420000" products="-213 211"/>
<channel onMode="1" bRatio="0.0420000" products="113 111"/>
<channel onMode="1" bRatio="0.0420000" products="213 -211"/>
<channel onMode="1" bRatio="0.0270000" meMode="1" products="211 -211 111"/>
<channel onMode="1" bRatio="0.0130000" products="221 22"/>
<channel onMode="1" bRatio="0.0012500" products="111 22"/>
<channel onMode="1" bRatio="0.0002970" products="11 -11"/>
<channel onMode="1" bRatio="0.0002860" products="13 -13"/>
<channel onMode="1" bRatio="0.0001150" meMode="11" products="221 11 -11"/>
<channel onMode="1" bRatio="0.0000730" meMode="2" products="211 -211"/>
<channel onMode="1" bRatio="0.0000520" products="223 111"/>
</particle>
<particle id="335" name="f'_2(1525)" spinType="5" chargeType="0" colType="0"
m0="1.52500" mWidth="0.07300" mMin="1.10000" mMax="2.00000">
<channel onMode="1" bRatio="0.4444000" products="321 -321"/>
<channel onMode="1" bRatio="0.2222000" products="130 130"/>
<channel onMode="1" bRatio="0.2222000" products="310 310"/>
<channel onMode="1" bRatio="0.1030000" products="221 221"/>
<channel onMode="1" bRatio="0.0041000" products="211 -211"/>
<channel onMode="1" bRatio="0.0041000" products="111 111"/>
</particle>
<particle id="411" name="D+" antiName="D-" spinType="1" chargeType="3" colType="0"
m0="1.86962" tau0="3.11800e-01">
<channel onMode="1" bRatio="0.0004000" products="-13 14"/>
<channel onMode="1" bRatio="0.0010000" products="-15 16"/>
<channel onMode="1" bRatio="0.0043000" meMode="22" products="-11 12 111"/>
<channel onMode="1" bRatio="0.0028000" meMode="22" products="-11 12 113"/>
<channel onMode="1" bRatio="0.0026000" meMode="22" products="-11 12 221"/>
<channel onMode="1" bRatio="0.0028000" meMode="22" products="-11 12 223"/>
<channel onMode="1" bRatio="0.0900000" meMode="22" products="-11 12 311"/>
<channel onMode="1" bRatio="0.0554000" meMode="22" products="-11 12 -313"/>
<channel onMode="1" bRatio="0.0038000" meMode="22" products="-11 12 -315"/>
<channel onMode="1" bRatio="0.0005000" meMode="22" products="-11 12 331"/>
<channel onMode="1" bRatio="0.0036000" meMode="22" products="-11 12 -10313"/>
<channel onMode="1" bRatio="0.0043000" meMode="22" products="-13 14 111"/>
<channel onMode="1" bRatio="0.0028000" meMode="22" products="-13 14 113"/>
<channel onMode="1" bRatio="0.0026000" meMode="22" products="-13 14 221"/>
<channel onMode="1" bRatio="0.0028000" meMode="22" products="-13 14 223"/>
<channel onMode="1" bRatio="0.0874000" meMode="22" products="-13 14 311"/>
<channel onMode="1" bRatio="0.0533000" meMode="22" products="-13 14 -313"/>
<channel onMode="1" bRatio="0.0038000" meMode="22" products="-13 14 -315"/>
<channel onMode="1" bRatio="0.0005000" meMode="22" products="-13 14 331"/>
<channel onMode="1" bRatio="0.0036000" meMode="22" products="-13 14 -10313"/>
<channel onMode="1" bRatio="0.0014000" meMode="22" products="-11 12 311 111"/>
<channel onMode="1" bRatio="0.0027000" meMode="22" products="-11 12 -321 211"/>
<channel onMode="1" bRatio="0.0014000" meMode="22" products="-13 14 311 111"/>
<channel onMode="1" bRatio="0.0027000" meMode="22" products="-13 14 -321 211"/>
<channel onMode="1" bRatio="0.0026000" products="211 111"/>
<channel onMode="1" bRatio="0.0010000" products="211 113"/>
<channel onMode="1" bRatio="0.0076000" products="221 211"/>
<channel onMode="1" bRatio="0.0282000" products="311 211"/>
<channel onMode="1" bRatio="0.0210000" products="-313 213"/>
<channel onMode="1" bRatio="0.0074000" products="321 311"/>
<channel onMode="1" bRatio="0.0042000" products="321 -313"/>
<channel onMode="1" bRatio="0.0310000" products="323 311"/>
<channel onMode="1" bRatio="0.0180000" products="323 -313"/>
<channel onMode="1" bRatio="0.0070000" products="333 211"/>
<channel onMode="1" bRatio="0.0115000" products="-10311 211"/>
<channel onMode="1" bRatio="0.0800000" products="20213 311"/>
<channel onMode="1" bRatio="0.0508000" products="-20313 211"/>
<channel onMode="1" bRatio="0.0015000" products="211 111 111"/>
<channel onMode="1" bRatio="0.0020000" products="211 211 -211"/>
<channel onMode="1" bRatio="0.0030000" products="221 211 111"/>
<channel onMode="1" bRatio="0.0970000" products="311 211 111"/>
<channel onMode="1" bRatio="0.0050000" products="311 211 113"/>
<channel onMode="1" bRatio="0.0100000" products="311 221 211"/>
<channel onMode="1" bRatio="0.0050000" products="311 223 211"/>
<channel onMode="1" bRatio="0.0010000" products="311 311 211"/>
<channel onMode="1" bRatio="0.0010000" products="313 311 211"/>
<channel onMode="1" bRatio="0.0100000" products="-313 211 111"/>
<channel onMode="1" bRatio="0.0078000" products="-313 211 113"/>
<channel onMode="1" bRatio="0.0100000" products="-313 221 211"/>
<channel onMode="1" bRatio="0.0050000" products="-313 223 211"/>
<channel onMode="1" bRatio="0.0010000" products="-313 311 211"/>
<channel onMode="1" bRatio="0.0010000" products="321 311 111"/>
<channel onMode="1" bRatio="0.0100000" products="321 311 311"/>
<channel onMode="1" bRatio="0.0010000" products="321 -313 111"/>
<channel onMode="1" bRatio="0.0046000" products="321 -321 211"/>
<channel onMode="1" bRatio="0.0920000" products="-321 211 211"/>
<channel onMode="1" bRatio="0.0110000" products="-321 213 211"/>
<channel onMode="1" bRatio="0.0010000" products="323 311 111"/>
<channel onMode="1" bRatio="0.0010000" products="323 -321 211"/>
<channel onMode="1" bRatio="0.0070000" products="-323 211 211"/>
<channel onMode="1" bRatio="0.0100000" products="-323 213 211"/>
<channel onMode="1" bRatio="0.0010000" products="-323 321 211"/>
<channel onMode="1" bRatio="0.0230000" products="333 211 111"/>
<channel onMode="1" bRatio="0.0050000" products="211 111 111 111"/>
<channel onMode="1" bRatio="0.0090000" products="211 211 -211 111"/>
<channel onMode="1" bRatio="0.0020000" products="221 211 111 111"/>
<channel onMode="1" bRatio="0.0030000" products="221 211 211 -211"/>
<channel onMode="1" bRatio="0.0188000" products="311 211 111 111"/>
<channel onMode="1" bRatio="0.0120000" products="-321 211 211 111"/>
<channel onMode="1" bRatio="0.0021000" products="211 211 211 -211 -211"/>
<channel onMode="1" bRatio="0.0035000" products="311 211 111 111 111"/>
<channel onMode="1" bRatio="0.0087000" products="311 211 211 -211 111"/>
<channel onMode="1" bRatio="0.0050000" products="-321 211 211 111 111"/>
<channel onMode="1" bRatio="0.0022000" products="-321 211 211 211 -211"/>
</particle>
<particle id="413" name="D*+" antiName="D*-" spinType="3" chargeType="3" colType="0"
m0="2.01028" mWidth="9.60000e-6">
<channel onMode="1" bRatio="0.6770000" meMode="2" products="421 211"/>
<channel onMode="1" bRatio="0.3070000" meMode="2" products="411 111"/>
<channel onMode="1" bRatio="0.0160000" products="411 22"/>
</particle>
<particle id="415" name="D*_2(2460)+" antiName="D*_2(2460)-" spinType="5" chargeType="3" colType="0"
m0="2.46440" mWidth="0.03700" mMin="2.30000" mMax="2.65000">
<channel onMode="1" bRatio="0.2200000" products="423 211"/>
<channel onMode="1" bRatio="0.1100000" products="413 111"/>
<channel onMode="1" bRatio="0.3800000" products="421 211"/>
<channel onMode="1" bRatio="0.1900000" products="411 111"/>
<channel onMode="1" bRatio="0.0670000" products="423 211 111"/>
<channel onMode="1" bRatio="0.0330000" products="413 211 -211"/>
</particle>
<particle id="421" name="D0" antiName="Dbar0" spinType="1" chargeType="0" colType="0"
m0="1.86486" tau0="1.22900e-01">
<channel onMode="1" bRatio="0.0034000" meMode="22" products="-11 12 -211"/>
<channel onMode="1" bRatio="0.0022000" meMode="22" products="-11 12 -213"/>
<channel onMode="1" bRatio="0.0350000" meMode="22" products="-11 12 -321"/>
<channel onMode="1" bRatio="0.0225000" meMode="22" products="-11 12 -323"/>
<channel onMode="1" bRatio="0.0015000" meMode="22" products="-11 12 -325"/>
<channel onMode="1" bRatio="0.0014000" meMode="22" products="-11 12 -10323"/>
<channel onMode="1" bRatio="0.0034000" meMode="22" products="-13 14 -211"/>
<channel onMode="1" bRatio="0.0022000" meMode="22" products="-13 14 -213"/>
<channel onMode="1" bRatio="0.0340000" meMode="22" products="-13 14 -321"/>
<channel onMode="1" bRatio="0.0214000" meMode="22" products="-13 14 -323"/>
<channel onMode="1" bRatio="0.0015000" meMode="22" products="-13 14 -325"/>
<channel onMode="1" bRatio="0.0014000" meMode="22" products="-13 14 -10323"/>
<channel onMode="1" bRatio="0.0011000" meMode="22" products="-11 12 311 -211"/>
<channel onMode="1" bRatio="0.0006000" meMode="22" products="-11 12 -321 111"/>