1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
18 Revision 1.15 2002/10/14 14:55:35 hristov
19 Merging the VirtualMC branch to the main development branch (HEAD)
21 Revision 1.14 2002/10/11 10:05:18 morsch
22 pdg code for psi' corrected.
24 Revision 1.10.6.3 2002/10/10 16:40:08 hristov
25 Updating VirtualMC to v3-09-02
27 Revision 1.13 2002/09/16 10:40:48 morsch
28 Use correct pdg codes for Upsilon(2S) = 100553 and Upsilon(3S) = 200553.
30 Revision 1.12 2002/06/05 14:05:46 morsch
31 Decayer option kPhiKK for forced phi->K+K- decay added.
33 Revision 1.11 2002/04/26 10:32:59 morsch
34 Option kNoDecayHeavy added.
36 Revision 1.10 2002/02/22 17:28:05 morsch
37 ReadDecayTable() and WriteDecayTable() methods added.
39 Revision 1.9 2001/12/20 10:37:13 morsch
40 - Add omega forced decay.
41 - Semileptonic decays for some more B and D baryons.
43 Revision 1.8 2001/07/04 10:28:20 morsch
44 Introduce GetLifetime(Int_T kf) method until functionality provided by
47 Revision 1.7 2001/04/12 07:23:28 morsch
48 Reactivate forcing option for dimuon and dielectron decay channels of phi (333).
50 Revision 1.6 2001/03/27 10:53:26 morsch
51 Save pythia default decay table at first initialization. Reload at each
52 following Init() call.
54 Revision 1.5 2001/03/09 13:04:06 morsch
55 Decay_t moved to AliDecayer.h
57 Revision 1.4 2001/01/30 09:23:11 hristov
58 Streamers removed (R.Brun)
60 Revision 1.3 2000/12/21 16:24:06 morsch
61 Coding convention clean-up
63 Revision 1.2 2000/09/12 13:58:45 morsch
64 SetForceDcay(..) sets the member data storing the forced decay information.
65 ForceDecay() executes the change of the decay table.
67 Revision 1.1 2000/09/06 14:23:43 morsch
68 Realisation of AliDecayer using Pythia6
72 // Implementation of AliDecayer using Pythia
73 // Method forwarding to the AliPythia instance.
74 // Muonic and electronic decay modes can be forced
75 // for heavy flavor hadrons.
76 // Author: andreas.morsch@cern.ch
79 #include "AliDecayerPythia.h"
80 #include "AliPythia.h"
82 #include <TLorentzVector.h>
83 #include <TClonesArray.h>
85 ClassImp(AliDecayerPythia)
88 # define py1ent py1ent_
89 # define opendecaytable opendecaytable_
92 # define lu1ent PY1ENT
93 # define opendecaytable OPENDECAYTABLE
94 # define type_of_call _stdcall
97 extern "C" void type_of_call
98 py1ent(Int_t&, Int_t&, Double_t&, Double_t&, Double_t&);
100 extern "C" void type_of_call
101 opendecaytable(Int_t&);
103 Bool_t AliDecayerPythia::fgInit = kFALSE;
106 AliDecayerPythia::AliDecayerPythia()
108 // Default Constructor
109 fPythia=AliPythia::Instance();
110 for (Int_t i=0; i< 501; i++) fBraPart[i]= 1.;
113 void AliDecayerPythia::Init()
119 fPythia->SetDecayTable();
122 // Switch on heavy flavor decays
125 Int_t heavy[14] = {411, 421, 431, 4122, 4132, 4232, 4332, 511, 521, 531, 5122, 5132, 5232, 5332};
126 fPythia->ResetDecayTable();
127 for (j=0; j < 14; j++) {
128 kc=fPythia->Pycomp(heavy[j]);
129 if (fDecay == kNoDecayHeavy) {
130 fPythia->SetMDCY(kc,1,0);
132 fPythia->SetMDCY(kc,1,1);
133 for (i=fPythia->GetMDCY(kc,2);
134 i<fPythia->GetMDCY(kc,2)+fPythia->GetMDCY(kc,3);
136 fPythia->SetMDME(i,1,1);
144 void AliDecayerPythia::Decay(Int_t idpart, TLorentzVector* p)
148 Float_t energy = p->Energy();
149 Float_t theta = p->Theta();
150 Float_t phi = p->Phi();
152 Lu1Ent(0, idpart, energy, theta, phi);
153 fPythia->GetPrimaries();
154 // fPythia->Pylist(1);
158 Int_t AliDecayerPythia::ImportParticles(TClonesArray *particles)
160 // Import the decay products
162 return fPythia->ImportParticles(particles, "All");
166 void AliDecayerPythia::ForceDecay()
168 // Force a particle decay mode
169 Decay_t decay=fDecay;
170 fPythia->SetMSTJ(21,2);
171 if (decay == kNoDecayHeavy) return;
179 ForceParticleDecay( 411,13,1); // D+/-
180 ForceParticleDecay( 421,13,1); // D0
181 ForceParticleDecay( 431,13,1); // D_s
182 ForceParticleDecay( 4122,13,1); // Lambda_c
183 ForceParticleDecay( 4132,13,1); // Xsi_c
184 ForceParticleDecay( 4232,13,1); // Sigma_c
185 ForceParticleDecay( 4332,13,1); // Omega_c
186 ForceParticleDecay( 511,13,1); // B0
187 ForceParticleDecay( 521,13,1); // B+/-
188 ForceParticleDecay( 531,13,1); // B_s
189 ForceParticleDecay( 5122,13,1); // Lambda_b
190 ForceParticleDecay( 5132,13,1); // Xsi_b
191 ForceParticleDecay( 5232,13,1); // Sigma_b
192 ForceParticleDecay( 5332,13,1); // Omega_b
195 ForceParticleDecay( 221,13,2); // eta
196 ForceParticleDecay( 223,13,2); // omega
197 ForceParticleDecay( 333,13,2); // phi
198 ForceParticleDecay( 443,13,2); // J/Psi
199 ForceParticleDecay(100443,13,2); // Psi'
200 ForceParticleDecay( 553,13,2); // Upsilon
201 ForceParticleDecay(100553,13,2); // Upsilon'
202 ForceParticleDecay(200553,13,2); // Upsilon''
204 case kSemiElectronic:
205 ForceParticleDecay( 411,11,1); // D+/-
206 ForceParticleDecay( 421,11,1); // D0
207 ForceParticleDecay( 431,11,1); // D_s
208 ForceParticleDecay( 4122,11,1); // Lambda_c
209 ForceParticleDecay( 4132,11,1); // Xsi_c
210 ForceParticleDecay( 4232,11,1); // Sigma_c
211 ForceParticleDecay( 4332,11,1); // Omega_c
212 ForceParticleDecay( 511,11,1); // B0
213 ForceParticleDecay( 521,11,1); // B+/-
214 ForceParticleDecay( 531,11,1); // B_s
215 ForceParticleDecay( 5122,11,1); // Lambda_b
216 ForceParticleDecay( 5132,11,1); // Xsi_b
217 ForceParticleDecay( 5232,11,1); // Sigma_b
218 ForceParticleDecay( 5332,11,1); // Omega_b
221 ForceParticleDecay( 333,11,2); // phi
222 ForceParticleDecay( 221,11,2); // eta
223 ForceParticleDecay( 223,11,2); // omega
224 ForceParticleDecay( 443,11,2); // J/Psi
225 ForceParticleDecay(100443,11,2); // Psi'
226 ForceParticleDecay( 553,11,2); // Upsilon
227 ForceParticleDecay(100553,11,2); // Upsilon'
228 ForceParticleDecay(200553,11,2); // Upsilon''
231 ForceParticleDecay( 511,443,1); // B0
232 ForceParticleDecay( 521,443,1); // B+/-
233 ForceParticleDecay( 531,443,1); // B_s
234 ForceParticleDecay( 5122,443,1); // Lambda_b
235 ForceParticleDecay( 443,13,2); // J/Psi
237 case kBPsiPrimeDiMuon:
238 ForceParticleDecay( 511,30443,1); // B0
239 ForceParticleDecay( 521,30443,1); // B+/-
240 ForceParticleDecay( 531,30443,1); // B_s
241 ForceParticleDecay( 5122,30443,1); // Lambda_b
242 ForceParticleDecay(100443,13,2); // Psi'
244 case kBJpsiDiElectron:
245 ForceParticleDecay( 511,443,1); // B0
246 ForceParticleDecay( 521,443,1); // B+/-
247 ForceParticleDecay( 531,443,1); // B_s
248 ForceParticleDecay( 5122,443,1); // Lambda_b
249 ForceParticleDecay( 443,11,2); // J/Psi
251 case kBPsiPrimeDiElectron:
252 ForceParticleDecay( 511,30443,1); // B0
253 ForceParticleDecay( 521,30443,1); // B+/-
254 ForceParticleDecay( 531,30443,1); // B_s
255 ForceParticleDecay( 5122,30443,1); // Lambda_b
256 ForceParticleDecay(100443,11,2); // Psi'
259 ForceParticleDecay(211,13,1); // pi->mu
262 ForceParticleDecay(321,13,1); // K->mu
268 ForceParticleDecay(333,321,2); // Phi->K+K-
275 fPythia->SetMSTJ(21,0);
282 void AliDecayerPythia::Lu1Ent(Int_t flag, Int_t idpart,
283 Double_t mom, Double_t theta, Double_t phi)
285 // Wrap of Pythia lu1ent subroutine
286 // printf("%d %d %f %f %f\n",flag, idpart, mom, theta, phi);
287 py1ent(flag, idpart, mom, theta, phi);
293 Int_t AliDecayerPythia::CountProducts(Int_t channel, Int_t particle)
295 // Count number of decay products
297 for (Int_t i=1; i<=5; i++) {
298 if (TMath::Abs(fPythia->GetKFDP(channel,i)) == particle) np++;
304 void AliDecayerPythia::ForceHadronicD()
307 // Force golden D decay modes
309 const Int_t kNHadrons = 4;
311 Int_t hadron[kNHadrons] = {411, 421, 431, 4112};
312 Int_t decayP[kNHadrons][3] =
314 {kKMinus, kPiPlus, kPiPlus},
315 {kKMinus, kPiPlus, 0 },
321 for (Int_t ihadron = 0; ihadron < kNHadrons; ihadron++)
323 Int_t kc = fPythia->Pycomp(hadron[ihadron]);
324 fPythia->SetMDCY(kc,1,1);
325 Int_t ifirst = fPythia->GetMDCY(kc,2);
326 Int_t ilast = ifirst + fPythia->GetMDCY(kc,3)-1;
328 for (channel = ifirst; channel <= ilast; channel++) {
330 fPythia->GetKFDP(channel,1) == decayP[ihadron][0] &&
331 fPythia->GetKFDP(channel,2) == decayP[ihadron][1] &&
332 fPythia->GetKFDP(channel,3) == decayP[ihadron][2] &&
333 fPythia->GetKFDP(channel,4) == 0
336 fPythia->SetMDME(channel,1,1);
338 fPythia->SetMDME(channel,1,0);
339 fBraPart[kc] -= fPythia->GetBRAT(channel);
340 } // selected channel ?
345 void AliDecayerPythia::ForceParticleDecay(Int_t particle, Int_t product, Int_t mult)
348 // force decay of particle into products with multiplicity mult
350 Int_t kc=fPythia->Pycomp(particle);
351 fPythia->SetMDCY(kc,1,1);
352 Int_t ifirst=fPythia->GetMDCY(kc,2);
353 Int_t ilast=ifirst+fPythia->GetMDCY(kc,3)-1;
356 // Loop over decay channels
357 for (Int_t channel=ifirst; channel<=ilast;channel++) {
358 if (CountProducts(channel,product) >= mult) {
359 fPythia->SetMDME(channel,1,1);
361 fPythia->SetMDME(channel,1,0);
362 fBraPart[kc]-=fPythia->GetBRAT(channel);
367 void AliDecayerPythia::DefineParticles()
371 // Some particles cloned for rare decays
373 // phi-> mu+mu- and phi -> e+e-
374 // clone the original phi
380 kc = fPythia->Pycomp(333);
384 fPythia->SetKCHG(nkc,i,fPythia->GetKCHG(kc,i));
388 fPythia->SetPMAS(nkc,i,fPythia->GetPMAS(kc,i));
390 // fPythia->SetCHAF(nkc, fPythia->GetCHAF(kc));
394 fPythia-> SetMDCY(nkc,1,1);
395 fPythia-> SetMDCY(nkc,2,993);
396 fPythia-> SetMDCY(nkc,3,2);
399 fPythia->SetMDME(993,1,1);
400 fPythia->SetMDME(993,2,0);
401 fPythia->SetBRAT(993,2.99e-4);
402 fPythia->SetKFDP(993,1,+11);
403 fPythia->SetKFDP(993,2,-11);
404 fPythia->SetKFDP(993,3,0);
405 fPythia->SetKFDP(993,4,0);
406 fPythia->SetKFDP(993,5,0);
409 fPythia->SetMDME(994,1,1);
410 fPythia->SetMDME(994,2,0);
411 fPythia->SetBRAT(994,2.5e-4);
412 fPythia->SetKFDP(994,1,+13);
413 fPythia->SetKFDP(994,2,-13);
414 fPythia->SetKFDP(994,3,0);
415 fPythia->SetKFDP(994,4,0);
416 fPythia->SetKFDP(994,5,0);
420 // phi clone for dilepton decay-channel
421 kc = fPythia->Pycomp(41);
422 mass = fPythia->GetPMAS(kc,1);
423 tlife= fPythia->GetPMAS(kc,4);
424 // gMC->Gspart(113,"Phi",3,mass,0,tlife);
427 void AliDecayerPythia::ForceOmega()
429 // Force Omega -> Lambda K- Decay
430 Int_t kc=fPythia->Pycomp(3334);
431 fPythia->SetMDCY(kc,1,1);
432 Int_t ifirst = fPythia->GetMDCY(kc,2);
433 Int_t ilast = ifirst + fPythia->GetMDCY(kc,3)-1;
434 for (Int_t channel = ifirst; channel <= ilast; channel++) {
436 fPythia->GetKFDP(channel,1) == kLambda0 &&
437 fPythia->GetKFDP(channel,2) == kKMinus &&
438 fPythia->GetKFDP(channel,3) == 0
441 fPythia->SetMDME(channel,1,1);
443 fPythia->SetMDME(channel,1,0);
444 } // selected channel ?
450 Float_t AliDecayerPythia::GetPartialBranchingRatio(Int_t kf)
452 // Get branching ratio
453 Int_t kc=fPythia->Pycomp(TMath::Abs(kf));
457 Float_t AliDecayerPythia::GetLifetime(Int_t kf)
459 // Get branching ratio
460 Int_t kc=fPythia->Pycomp(TMath::Abs(kf));
461 return fPythia->GetPMAS(kc,4)*3.3333e-12;
464 void AliDecayerPythia::WriteDecayTable()
467 // Write the decay table
468 fPythia->Pyupda(1,15);
471 void AliDecayerPythia::ReadDecayTable()
474 // Read the decay table
477 fPythia->Pyupda(2,lun);
481 void AliDecayerPythia::Streamer(TBuffer &R__b)
483 // Stream an object of class AliDecayerPythia.
485 if (R__b.IsReading()) {
486 Version_t R__v = R__b.ReadVersion(); if (R__v) { }
487 AliDecayer::Streamer(R__b);
488 (AliPythia::Instance())->Streamer(R__b);
489 R__b >> (Int_t&)fDecay;
490 R__b.ReadStaticArray(fBraPart);
492 R__b.WriteVersion(AliDecayerPythia::IsA());
493 AliDecayer::Streamer(R__b);
495 R__b << (Int_t)fDecay;
496 R__b.WriteArray(fBraPart, 501);
501 void AliDecayerPythia::Copy(AliDecayerPythia &decayer) const
504 // Copy *this onto AliDecayerPythia -- not implemented
506 Fatal("Copy","Not implemented!\n");
512 Particle/parton data table
514 KF KC particle antiparticle chg col anti mass width w-cut lifetime decay
515 IDC on/off ME Br.rat. decay products
517 1 1 d dbar -1 1 1 0.33000 0.00000 0.00000 0.00000E+00 0
519 2 1 102 0.000000 gamma d
520 3 1 102 0.000000 Z0 d
521 4 1 102 0.000000 W- u
522 5 1 102 0.000000 W- c
523 6 1 102 0.000000 W- t
524 7 -1 102 0.000000 W- t'
525 8 1 102 0.000000 h0 d
527 2 2 u ubar 2 1 1 0.33000 0.00000 0.00000 0.00000E+00 0
529 10 1 102 0.000000 gamma u
530 11 1 102 0.000000 Z0 u
531 12 1 102 0.000000 W+ d
532 13 1 102 0.000000 W+ s
533 14 1 102 0.000000 W+ b
534 15 -1 102 0.000000 W+ b'
535 16 1 102 0.000000 h0 u
537 3 3 s sbar -1 1 1 0.50000 0.00000 0.00000 0.00000E+00 0
538 17 1 102 0.000000 g s
539 18 1 102 0.000000 gamma s
540 19 1 102 0.000000 Z0 s
541 20 1 102 0.000000 W- u
542 21 1 102 0.000000 W- c
543 22 1 102 0.000000 W- t
544 23 -1 102 0.000000 W- t'
545 24 1 102 0.000000 h0 s
547 4 4 c cbar 2 1 1 1.20000 0.00000 0.00000 0.00000E+00 0
548 25 1 102 0.000000 g c
549 26 1 102 0.000000 gamma c
550 27 1 102 0.000000 Z0 c
551 28 1 102 0.000000 W+ d
552 29 1 102 0.000000 W+ s
553 30 1 102 0.000000 W+ b
554 31 -1 102 0.000000 W+ b'
555 32 1 102 0.000000 h0 c
557 5 5 b bbar -1 1 1 4.80000 0.00000 0.00000 0.00000E+00 0
558 33 1 102 0.000000 g b
559 34 1 102 0.000000 gamma b
560 35 1 102 0.000000 Z0 b
561 36 1 102 0.000000 W- u
562 37 1 102 0.000000 W- c
563 38 1 102 0.000000 W- t
564 39 -1 102 0.000000 W- t'
565 40 1 102 0.000000 h0 b
567 6 6 t tbar 2 1 1 175.00000 1.40244 14.02444 0.00000E+00 1
568 41 1 102 0.000000 g t
569 42 1 102 0.000000 gamma t
570 43 1 102 0.000000 Z0 t
574 47 -1 0 0.000000 W+ b'
575 48 1 102 0.000000 h0 t
576 49 -1 0 0.000000 H+ b
577 50 -1 53 0.000000 ~chi_10 ~t_1
578 51 -1 53 0.000000 ~chi_20 ~t_1
579 52 -1 53 0.000000 ~chi_30 ~t_1
580 53 -1 53 0.000000 ~chi_40 ~t_1
581 54 -1 53 0.000000 ~g ~t_1
582 55 -1 53 0.000000 ~gravitino ~t_1
584 7 7 b' b'bar -1 1 1 400.00000 0.00000 0.00000 0.00000E+00 1
585 56 1 102 0.000000 g b'
586 57 1 102 0.000000 gamma b'
587 58 1 102 0.000000 Z0 b'
591 62 1 0 0.000000 W- t'
592 63 1 102 0.000000 h0 b'
593 64 -1 0 0.000000 H- c
594 65 -1 0 0.000000 H- t
596 8 8 t' t'bar 2 1 1 400.00000 0.00000 0.00000 0.00000E+00 1
597 66 1 102 0.000000 g t'
598 67 1 102 0.000000 gamma t'
599 68 1 102 0.000000 Z0 t'
603 72 1 0 0.000000 W+ b'
604 73 1 102 0.000000 h0 t'
605 74 -1 0 0.000000 H+ b
606 75 -1 0 0.000000 H+ b'
608 11 11 e- e+ -3 0 1 0.00051 0.00000 0.00000 0.00000E+00 0
609 76 1 102 0.000000 gamma e-
610 77 1 102 0.000000 Z0 e-
611 78 1 102 0.000000 W- nu_e
612 79 1 102 0.000000 h0 e-
614 12 12 nu_e nu_ebar 0 0 1 0.00000 0.00000 0.00000 0.00000E+00 0
615 80 1 102 0.000000 Z0 nu_e
616 81 1 102 0.000000 W+ e-
618 13 13 mu- mu+ -3 0 1 0.10566 0.00000 0.00000 6.58654E+05 0
619 82 1 42 1.000000 nu_ebar e- nu_mu
620 83 1 102 0.000000 gamma mu-
621 84 1 102 0.000000 Z0 mu-
622 85 1 102 0.000000 W- nu_mu
623 86 1 102 0.000000 h0 mu-
625 14 14 nu_mu nu_mubar 0 0 1 0.00000 0.00000 0.00000 0.00000E+00 0
626 87 1 102 0.000000 Z0 nu_mu
627 88 1 102 0.000000 W+ mu-
629 15 15 tau- tau+ -3 0 1 1.77700 0.00000 0.00000 8.72000E-02 1
630 89 1 42 0.178300 nu_ebar e- nu_tau
631 90 1 42 0.173500 nu_mubar mu- nu_tau
632 91 1 0 0.113100 nu_tau pi-
633 92 1 0 0.249400 nu_tau rho-
634 93 1 41 0.003000 nu_tau pi- pi0
635 94 1 41 0.090000 nu_tau rho- pi0
636 95 1 41 0.002700 nu_tau pi- pi0 pi0
637 96 1 41 0.010000 nu_tau rho- pi0 pi0
638 97 1 41 0.001400 nu_tau pi- pi0 pi0 pi0
639 98 1 41 0.001200 nu_tau rho- pi0 pi0 pi0
640 99 1 41 0.000250 nu_tau pi- K_S0
641 100 1 41 0.000250 nu_tau pi- K_L0
642 101 1 0 0.007100 nu_tau K-
643 102 1 0 0.012000 nu_tau K*-
644 103 1 41 0.000400 nu_tau K- pi0
645 104 1 41 0.000750 nu_tau K*- pi0
646 105 1 41 0.000060 nu_tau K*- pi0 pi0
647 106 1 41 0.000780 nu_tau K- K_S0
648 107 1 41 0.000780 nu_tau K- K_L0
649 108 1 41 0.003400 nu_tau K- K+ pi-
650 109 1 41 0.080000 nu_tau pi- rho0
651 110 1 41 0.011000 nu_tau pi- pi+ pi-
652 111 1 41 0.019100 nu_tau pi- omega
653 112 1 41 0.000060 nu_tau pi- eta
654 113 1 41 0.005000 nu_tau rho- rho0
655 114 1 41 0.013300 nu_tau pi- rho0 pi0
656 115 1 41 0.006700 nu_tau rho- pi+ pi-
657 116 1 41 0.000500 nu_tau pi- pi+ pi- pi0
658 117 1 41 0.003500 nu_tau rho- omega
659 118 1 41 0.000600 nu_tau pi- omega pi0
660 119 1 41 0.001500 nu_tau rho- eta
661 120 1 41 0.000210 nu_tau pi- eta pi0
662 121 1 41 0.000200 nu_tau rho- rho0 pi0
663 122 1 41 0.000750 nu_tau pi- rho0 rho0
664 123 1 41 0.000100 nu_tau pi- eta eta
665 124 1 41 0.000200 nu_tau pi- rho0 pi0 pi0
666 125 1 41 0.001100 nu_tau rho- rho0 pi0 pi0
667 126 1 41 0.000200 nu_tau pi- rho+ rho-
668 127 1 41 0.000200 nu_tau pi- rho+ pi- pi0
669 128 1 41 0.000200 nu_tau pi- rho- pi+ pi0
670 129 1 41 0.000220 nu_tau pi- rho0 rho0 pi0
671 130 1 41 0.000400 nu_tau K*- pi0 pi0
672 131 1 41 0.000100 nu_tau K- pi0 pi0 pi0
673 132 1 41 0.002050 nu_tau pi- K_S0 pi0
674 133 1 41 0.002050 nu_tau pi- K_L0 pi0
675 134 1 41 0.000690 nu_tau K- K_S0 pi0
676 135 1 41 0.000690 nu_tau K- K_L0 pi0
677 136 1 41 0.000250 nu_tau pi- K_S0 K_S0
678 137 1 41 0.000510 nu_tau pi- K_S0 K_L0
679 138 1 41 0.000250 nu_tau pi- K_L0 K_L0
680 139 1 102 0.000000 gamma tau-
681 140 1 102 0.000000 Z0 tau-
682 141 1 102 0.000000 W- nu_tau
683 142 1 102 0.000000 h0 tau-
685 16 16 nu_tau nu_taubar 0 0 1 0.00000 0.00000 0.00000 0.00000E+00 0
686 143 1 102 0.000000 Z0 nu_tau
687 144 1 102 0.000000 W+ tau-
689 17 17 tau'- tau'+ -3 0 1 400.00000 0.00000 0.00000 0.00000E+00 1
690 145 1 102 0.000000 gamma tau'-
691 146 1 102 0.000000 Z0 tau'-
692 147 1 0 0.000000 W- nu'_tau
693 148 1 102 0.000000 h0 tau'-
694 149 -1 0 0.000000 H- nu'_tau
696 18 18 nu'_tau nu'_taubar 0 0 1 0.00000 0.00000 0.00000 0.00000E+00 0
697 150 1 102 0.000000 Z0 nu'_tau
698 151 1 0 0.000000 W+ tau'-
699 152 -1 0 0.000000 H+ tau'-
701 21 21 g 0 2 0 0.00000 0.00000 0.00000 0.00000E+00 0
702 153 0 102 0.000000 d dbar
703 154 0 102 0.000000 u ubar
704 155 0 102 0.000000 s sbar
705 156 1 102 0.000000 c cbar
706 157 0 102 0.000000 b bbar
707 158 0 102 0.000000 t tbar
708 159 0 102 0.000000 b' b'bar
709 160 0 102 0.000000 t' t'bar
710 161 1 102 0.000000 g g
712 22 22 gamma 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
713 162 0 102 0.000000 d dbar
714 163 0 102 0.000000 u ubar
715 164 0 102 0.000000 s sbar
716 165 1 102 0.000000 c cbar
717 166 0 102 0.000000 b bbar
718 167 0 102 0.000000 t tbar
719 168 0 102 0.000000 b' b'bar
720 169 0 102 0.000000 t' t'bar
721 170 0 102 0.000000 e- e+
722 171 0 102 0.000000 mu- mu+
723 172 0 102 0.000000 tau- tau+
724 173 0 102 0.000000 tau'- tau'+
726 23 23 Z0 0 0 0 91.18700 2.47872 24.78720 0.00000E+00 1
727 174 1 32 0.153998 d dbar
728 175 1 32 0.119422 u ubar
729 176 1 32 0.153988 s sbar
730 177 1 32 0.119322 c cbar
731 178 1 32 0.152275 b bbar
732 179 1 32 0.000000 t tbar
733 180 -1 32 0.000000 b' b'bar
734 181 -1 32 0.000000 t' t'bar
735 182 1 0 0.033568 e- e+
736 183 1 0 0.066789 nu_e nu_ebar
737 184 1 0 0.033567 mu- mu+
738 185 1 0 0.066789 nu_mu nu_mubar
739 186 1 0 0.033492 tau- tau+
740 187 1 0 0.066789 nu_tau nu_taubar
741 188 -1 0 0.000000 tau'- tau'+
742 189 -1 0 0.000000 nu'_tau nu'_taubar
744 24 24 W+ W- 3 0 1 80.33000 2.06856 20.68560 0.00000E+00 1
745 190 1 32 0.321379 dbar u
746 191 1 32 0.016498 dbar c
747 192 1 32 0.000000 dbar t
748 193 -1 32 0.000000 dbar t'
749 194 1 32 0.016502 sbar u
750 195 1 32 0.320685 sbar c
751 196 1 32 0.000000 sbar t
752 197 -1 32 0.000000 sbar t'
753 198 1 32 0.000010 bbar u
754 199 1 32 0.000591 bbar c
755 200 1 32 0.000000 bbar t
756 201 -1 32 0.000000 bbar t'
757 202 -1 32 0.000000 b'bar u
758 203 -1 32 0.000000 b'bar c
759 204 -1 32 0.000000 b'bar t
760 205 -1 32 0.000000 b'bar t'
761 206 1 0 0.108138 e+ nu_e
762 207 1 0 0.108138 mu+ nu_mu
763 208 1 0 0.108059 tau+ nu_tau
764 209 -1 0 0.000000 tau'+ nu'_tau
766 25 25 h0 0 0 0 80.00000 0.00240 0.02402 0.00000E+00 1
767 210 1 32 0.000001 d dbar
768 211 1 32 0.000000 u ubar
769 212 1 32 0.000378 s sbar
770 213 1 32 0.054441 c cbar
771 214 1 32 0.853399 b bbar
772 215 1 32 0.000000 t tbar
773 216 -1 32 0.000000 b' b'bar
774 217 -1 32 0.000000 t' t'bar
775 218 1 0 0.000000 e- e+
776 219 1 0 0.000241 mu- mu+
777 220 1 0 0.067867 tau- tau+
778 221 -1 0 0.000000 tau'- tau'+
780 223 1 0 0.000867 gamma gamma
781 224 1 0 0.000000 gamma Z0
782 225 1 0 0.000134 Z0 Z0
783 226 1 0 0.000494 W+ W-
784 227 -1 53 0.000000 ~chi_10 ~chi_10
785 228 -1 53 0.000000 ~chi_20 ~chi_10
786 229 -1 53 0.000000 ~chi_20 ~chi_20
787 230 -1 53 0.000000 ~chi_30 ~chi_10
788 231 -1 53 0.000000 ~chi_30 ~chi_20
789 232 -1 53 0.000000 ~chi_30 ~chi_30
790 233 -1 53 0.000000 ~chi_40 ~chi_10
791 234 -1 53 0.000000 ~chi_40 ~chi_20
792 235 -1 53 0.000000 ~chi_40 ~chi_30
793 236 -1 53 0.000000 ~chi_40 ~chi_40
794 237 -1 53 0.000000 ~chi_1+ ~chi_1-
795 238 -1 53 0.000000 ~chi_1+ ~chi_2-
796 239 -1 53 0.000000 ~chi_2+ ~chi_1-
797 240 -1 53 0.000000 ~chi_2+ ~chi_2-
798 241 -1 53 0.000000 ~d_L ~d_Lbar
799 242 -1 53 0.000000 ~d_R ~d_Rbar
800 243 -1 53 0.000000 ~d_L ~d_Rbar
801 244 -1 53 0.000000 ~d_Lbar ~d_R
802 245 -1 53 0.000000 ~u_L ~u_Lbar
803 246 -1 53 0.000000 ~u_R ~u_Rbar
804 247 -1 53 0.000000 ~u_L ~u_Rbar
805 248 -1 53 0.000000 ~u_Lbar ~u_R
806 249 -1 53 0.000000 ~s_L ~s_Lbar
807 250 -1 53 0.000000 ~s_R ~s_Rbar
808 251 -1 53 0.000000 ~s_L ~s_Rbar
809 252 -1 53 0.000000 ~s_Lbar ~s_R
810 253 -1 53 0.000000 ~c_L ~c_Lbar
811 254 -1 53 0.000000 ~c_R ~c_Rbar
812 255 -1 53 0.000000 ~c_L ~c_Rbar
813 256 -1 53 0.000000 ~c_Lbar ~c_R
814 257 -1 53 0.000000 ~b_1 ~b_1bar
815 258 -1 53 0.000000 ~b_2 ~b_2bar
816 259 -1 53 0.000000 ~b_1 ~b_2bar
817 260 -1 53 0.000000 ~b_1bar ~b_2
818 261 -1 53 0.000000 ~t_1 ~t_1bar
819 262 -1 53 0.000000 ~t_2 ~t_2bar
820 263 -1 53 0.000000 ~t_1 ~t_2bar
821 264 -1 53 0.000000 ~t_1bar ~t_2
822 265 -1 53 0.000000 ~e_L- ~e_L+
823 266 -1 53 0.000000 ~e_R- ~e_R+
824 267 -1 53 0.000000 ~e_L- ~e_R+
825 268 -1 53 0.000000 ~e_L+ ~e_R-
826 269 -1 53 0.000000 ~nu_eL ~nu_eLbar
827 270 -1 53 0.000000 ~nu_eR ~nu_eRbar
828 271 -1 53 0.000000 ~nu_eL ~nu_eRbar
829 272 -1 53 0.000000 ~nu_eLbar ~nu_eR
830 273 -1 53 0.000000 ~mu_L- ~mu_L+
831 274 -1 53 0.000000 ~mu_R- ~mu_R+
832 275 -1 53 0.000000 ~mu_L- ~mu_R+
833 276 -1 53 0.000000 ~mu_L+ ~mu_R-
834 277 -1 53 0.000000 ~nu_muL ~nu_muLbar
835 278 -1 53 0.000000 ~nu_muR ~nu_muRbar
836 279 -1 53 0.000000 ~nu_muL ~nu_muRbar
837 280 -1 53 0.000000 ~nu_muLbar ~nu_muR
838 281 -1 53 0.000000 ~tau_1- ~tau_1+
839 282 -1 53 0.000000 ~tau_2- ~tau_2+
840 283 -1 53 0.000000 ~tau_1- ~tau_2+
841 284 -1 53 0.000000 ~tau_1+ ~tau_2-
842 285 -1 53 0.000000 ~nu_tauL ~nu_tauLbar
843 286 -1 53 0.000000 ~nu_tauR ~nu_tauRbar
844 287 -1 53 0.000000 ~nu_tauL ~nu_tauRbar
845 288 -1 53 0.000000 ~nu_tauLbar ~nu_tauR
847 28 28 reggeon 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
849 29 29 pomeron 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
851 32 32 Z'0 0 0 0 500.00000 14.54208 145.42084 0.00000E+00 1
852 289 1 32 0.145842 d dbar
853 290 1 32 0.113282 u ubar
854 291 1 32 0.145842 s sbar
855 292 1 32 0.113278 c cbar
856 293 1 32 0.145788 b bbar
857 294 1 32 0.049004 t tbar
858 295 -1 32 0.000000 b' b'bar
859 296 -1 32 0.000000 t' t'bar
860 297 1 0 0.032021 e- e+
861 298 1 0 0.063634 nu_e nu_ebar
862 299 1 0 0.032021 mu- mu+
863 300 1 0 0.063634 nu_mu nu_mubar
864 301 1 0 0.032018 tau- tau+
865 302 1 0 0.063634 nu_tau nu_taubar
866 303 -1 0 0.000000 tau'- tau'+
867 304 -1 0 0.000000 nu'_tau nu'_taubar
868 305 -1 0 0.000000 W+ W-
869 306 -1 0 0.000000 H+ H-
870 307 -1 0 0.000000 Z0 gamma
871 308 -1 0 0.000000 Z0 h0
872 309 -1 0 0.000000 h0 A0
873 310 -1 0 0.000000 H0 A0
875 33 33 Z"0 0 0 0 900.00000 0.00000 0.00000 0.00000E+00 0
877 34 34 W'+ W'- 3 0 1 500.00000 16.66312 166.63122 0.00000E+00 1
878 311 1 32 0.251235 dbar u
879 312 1 32 0.012901 dbar c
880 313 1 32 0.000006 dbar t
881 314 -1 32 0.000000 dbar t'
882 315 1 32 0.012901 sbar u
883 316 1 32 0.250776 sbar c
884 317 1 32 0.000380 sbar t
885 318 -1 32 0.000000 sbar t'
886 319 1 32 0.000008 bbar u
887 320 1 32 0.000465 bbar c
888 321 1 32 0.215427 bbar t
889 322 -1 32 0.000000 bbar t'
890 323 -1 32 0.000000 b'bar u
891 324 -1 32 0.000000 b'bar c
892 325 -1 32 0.000000 b'bar t
893 326 -1 32 0.000000 b'bar t'
894 327 1 0 0.085301 e+ nu_e
895 328 1 0 0.085301 mu+ nu_mu
896 329 1 0 0.085299 tau+ nu_tau
897 330 -1 0 0.000000 tau'+ nu'_tau
898 331 -1 0 0.000000 W+ Z0
899 332 -1 0 0.000000 W+ gamma
900 333 -1 0 0.000000 W+ h0
902 35 35 H0 0 0 0 300.00000 8.42840 84.28402 0.00000E+00 1
903 334 1 32 0.000000 d dbar
904 335 1 32 0.000000 u ubar
905 336 1 32 0.000000 s sbar
906 337 1 32 0.000048 c cbar
907 338 1 32 0.000768 b bbar
908 339 1 32 0.000000 t tbar
909 340 -1 32 0.000000 b' b'bar
910 341 -1 32 0.000000 t' t'bar
911 342 1 0 0.000000 e- e+
912 343 1 0 0.000000 mu- mu+
913 344 1 0 0.000074 tau- tau+
914 345 -1 0 0.000000 tau'- tau'+
916 347 1 0 0.000015 gamma gamma
917 348 1 0 0.000061 gamma Z0
918 349 1 0 0.306171 Z0 Z0
919 350 1 0 0.688641 W+ W-
920 351 1 0 0.000000 Z0 h0
921 352 1 0 0.003799 h0 h0
922 353 1 0 0.000000 A0 A0
923 354 -1 53 0.000000 ~chi_10 ~chi_10
924 355 -1 53 0.000000 ~chi_20 ~chi_10
925 356 -1 53 0.000000 ~chi_20 ~chi_20
926 357 -1 53 0.000000 ~chi_30 ~chi_10
927 358 -1 53 0.000000 ~chi_30 ~chi_20
928 359 -1 53 0.000000 ~chi_30 ~chi_30
929 360 -1 53 0.000000 ~chi_40 ~chi_10
930 361 -1 53 0.000000 ~chi_40 ~chi_20
931 362 -1 53 0.000000 ~chi_40 ~chi_30
932 363 -1 53 0.000000 ~chi_40 ~chi_40
933 364 -1 53 0.000000 ~chi_1+ ~chi_1-
934 365 -1 53 0.000000 ~chi_1+ ~chi_2-
935 366 -1 53 0.000000 ~chi_2+ ~chi_1-
936 367 -1 53 0.000000 ~chi_2+ ~chi_2-
937 368 -1 53 0.000000 ~d_L ~d_Lbar
938 369 -1 53 0.000000 ~d_R ~d_Rbar
939 370 -1 53 0.000000 ~d_L ~d_Rbar
940 371 -1 53 0.000000 ~d_Lbar ~d_R
941 372 -1 53 0.000000 ~u_L ~u_Lbar
942 373 -1 53 0.000000 ~u_R ~u_Rbar
943 374 -1 53 0.000000 ~u_L ~u_Rbar
944 375 -1 53 0.000000 ~u_Lbar ~u_R
945 376 -1 53 0.000000 ~s_L ~s_Lbar
946 377 -1 53 0.000000 ~s_R ~s_Rbar
947 378 -1 53 0.000000 ~s_L ~s_Rbar
948 379 -1 53 0.000000 ~s_Lbar ~s_R
949 380 -1 53 0.000000 ~c_L ~c_Lbar
950 381 -1 53 0.000000 ~c_R ~c_Rbar
951 382 -1 53 0.000000 ~c_L ~c_Rbar
952 383 -1 53 0.000000 ~c_Lbar ~c_R
953 384 -1 53 0.000000 ~b_1 ~b_1bar
954 385 -1 53 0.000000 ~b_2 ~b_2bar
955 386 -1 53 0.000000 ~b_1 ~b_2bar
956 387 -1 53 0.000000 ~b_1bar ~b_2
957 388 -1 53 0.000000 ~t_1 ~t_1bar
958 389 -1 53 0.000000 ~t_2 ~t_2bar
959 390 -1 53 0.000000 ~t_1 ~t_2bar
960 391 -1 53 0.000000 ~t_1bar ~t_2
961 392 -1 53 0.000000 ~e_L- ~e_L+
962 393 -1 53 0.000000 ~e_R- ~e_R+
963 394 -1 53 0.000000 ~e_L- ~e_R+
964 395 -1 53 0.000000 ~e_L+ ~e_R-
965 396 -1 53 0.000000 ~nu_eL ~nu_eLbar
966 397 -1 53 0.000000 ~nu_eR ~nu_eRbar
967 398 -1 53 0.000000 ~nu_eL ~nu_eRbar
968 399 -1 53 0.000000 ~nu_eLbar ~nu_eR
969 400 -1 53 0.000000 ~mu_L- ~mu_L+
970 401 -1 53 0.000000 ~mu_R- ~mu_R+
971 402 -1 53 0.000000 ~mu_L- ~mu_R+
972 403 -1 53 0.000000 ~mu_L+ ~mu_R-
973 404 -1 53 0.000000 ~nu_muL ~nu_muLbar
974 405 -1 53 0.000000 ~nu_muR ~nu_muRbar
975 406 -1 53 0.000000 ~nu_muL ~nu_muRbar
976 407 -1 53 0.000000 ~nu_muLbar ~nu_muR
977 408 -1 53 0.000000 ~tau_1- ~tau_1+
978 409 -1 53 0.000000 ~tau_2- ~tau_2+
979 410 -1 53 0.000000 ~tau_1- ~tau_2+
980 411 -1 53 0.000000 ~tau_1+ ~tau_2-
981 412 -1 53 0.000000 ~nu_tauL ~nu_tauLbar
982 413 -1 53 0.000000 ~nu_tauR ~nu_tauRbar
983 414 -1 53 0.000000 ~nu_tauL ~nu_tauRbar
984 415 -1 53 0.000000 ~nu_tauLbar ~nu_tauR
986 36 36 A0 0 0 0 300.00000 4.91995 49.19946 0.00000E+00 1
987 416 1 32 0.000000 d dbar
988 417 1 32 0.000000 u ubar
989 418 1 32 0.000001 s sbar
990 419 1 32 0.000082 c cbar
991 420 1 32 0.001318 b bbar
992 421 1 32 0.000000 t tbar
993 422 -1 32 0.000000 b' b'bar
994 423 -1 32 0.000000 t' t'bar
995 424 1 0 0.000000 e- e+
996 425 1 0 0.000000 mu- mu+
997 426 1 0 0.000126 tau- tau+
998 427 -1 0 0.000000 tau'- tau'+
1000 429 1 0 0.000010 gamma gamma
1001 430 1 0 0.000002 gamma Z0
1002 431 1 0 0.000000 Z0 Z0
1003 432 1 0 0.000000 W+ W-
1004 433 1 0 0.996296 Z0 h0
1005 434 -1 53 0.000000 ~chi_10 ~chi_10
1006 435 -1 53 0.000000 ~chi_20 ~chi_10
1007 436 -1 53 0.000000 ~chi_20 ~chi_20
1008 437 -1 53 0.000000 ~chi_30 ~chi_10
1009 438 -1 53 0.000000 ~chi_30 ~chi_20
1010 439 -1 53 0.000000 ~chi_30 ~chi_30
1011 440 -1 53 0.000000 ~chi_40 ~chi_10
1012 441 -1 53 0.000000 ~chi_40 ~chi_20
1013 442 -1 53 0.000000 ~chi_40 ~chi_30
1014 443 -1 53 0.000000 ~chi_40 ~chi_40
1015 444 -1 53 0.000000 ~chi_1+ ~chi_1-
1016 445 -1 53 0.000000 ~chi_1+ ~chi_2-
1017 446 -1 53 0.000000 ~chi_2+ ~chi_1-
1018 447 -1 53 0.000000 ~chi_2+ ~chi_2-
1019 448 -1 53 0.000000 ~d_L ~d_Lbar
1020 449 -1 53 0.000000 ~d_R ~d_Rbar
1021 450 -1 53 0.000000 ~d_L ~d_Rbar
1022 451 -1 53 0.000000 ~d_Lbar ~d_R
1023 452 -1 53 0.000000 ~u_L ~u_Lbar
1024 453 -1 53 0.000000 ~u_R ~u_Rbar
1025 454 -1 53 0.000000 ~u_L ~u_Rbar
1026 455 -1 53 0.000000 ~u_Lbar ~u_R
1027 456 -1 53 0.000000 ~s_L ~s_Lbar
1028 457 -1 53 0.000000 ~s_R ~s_Rbar
1029 458 -1 53 0.000000 ~s_L ~s_Rbar
1030 459 -1 53 0.000000 ~s_Lbar ~s_R
1031 460 -1 53 0.000000 ~c_L ~c_Lbar
1032 461 -1 53 0.000000 ~c_R ~c_Rbar
1033 462 -1 53 0.000000 ~c_L ~c_Rbar
1034 463 -1 53 0.000000 ~c_Lbar ~c_R
1035 464 -1 53 0.000000 ~b_1 ~b_1bar
1036 465 -1 53 0.000000 ~b_2 ~b_2bar
1037 466 -1 53 0.000000 ~b_1 ~b_2bar
1038 467 -1 53 0.000000 ~b_1bar ~b_2
1039 468 -1 53 0.000000 ~t_1 ~t_1bar
1040 469 -1 53 0.000000 ~t_2 ~t_2bar
1041 470 -1 53 0.000000 ~t_1 ~t_2bar
1042 471 -1 53 0.000000 ~t_1bar ~t_2
1043 472 -1 53 0.000000 ~e_L- ~e_L+
1044 473 -1 53 0.000000 ~e_R- ~e_R+
1045 474 -1 53 0.000000 ~e_L- ~e_R+
1046 475 -1 53 0.000000 ~e_L+ ~e_R-
1047 476 -1 53 0.000000 ~nu_eL ~nu_eLbar
1048 477 -1 53 0.000000 ~nu_eR ~nu_eRbar
1049 478 -1 53 0.000000 ~nu_eL ~nu_eRbar
1050 479 -1 53 0.000000 ~nu_eLbar ~nu_eR
1051 480 -1 53 0.000000 ~mu_L- ~mu_L+
1052 481 -1 53 0.000000 ~mu_R- ~mu_R+
1053 482 -1 53 0.000000 ~mu_L- ~mu_R+
1054 483 -1 53 0.000000 ~mu_L+ ~mu_R-
1055 484 -1 53 0.000000 ~nu_muL ~nu_muLbar
1056 485 -1 53 0.000000 ~nu_muR ~nu_muRbar
1057 486 -1 53 0.000000 ~nu_muL ~nu_muRbar
1058 487 -1 53 0.000000 ~nu_muLbar ~nu_muR
1059 488 -1 53 0.000000 ~tau_1- ~tau_1+
1060 489 -1 53 0.000000 ~tau_2- ~tau_2+
1061 490 -1 53 0.000000 ~tau_1- ~tau_2+
1062 491 -1 53 0.000000 ~tau_1+ ~tau_2-
1063 492 -1 53 0.000000 ~nu_tauL ~nu_tauLbar
1064 493 -1 53 0.000000 ~nu_tauR ~nu_tauRbar
1065 494 -1 53 0.000000 ~nu_tauL ~nu_tauRbar
1066 495 -1 53 0.000000 ~nu_tauLbar ~nu_tauR
1068 37 37 H+ H- 3 0 1 300.00000 5.76067 57.60673 0.00000E+00 1
1069 496 1 32 0.000000 dbar u
1070 497 1 32 0.000015 sbar c
1071 498 1 32 0.067644 bbar t
1072 499 -1 32 0.000000 b'bar t'
1073 500 1 0 0.000000 e+ nu_e
1074 501 1 0 0.000010 mu+ nu_mu
1075 502 1 0 0.002701 tau+ nu_tau
1076 503 -1 0 0.000000 tau'+ nu'_tau
1077 504 1 0 0.929631 W+ h0
1078 505 -1 53 0.000000 ~chi_10 ~chi_1+
1079 506 -1 53 0.000000 ~chi_10 ~chi_2+
1080 507 -1 53 0.000000 ~chi_20 ~chi_1+
1081 508 -1 53 0.000000 ~chi_20 ~chi_2+
1082 509 -1 53 0.000000 ~chi_30 ~chi_1+
1083 510 -1 53 0.000000 ~chi_30 ~chi_2+
1084 511 -1 53 0.000000 ~chi_40 ~chi_1+
1085 512 -1 53 0.000000 ~chi_40 ~chi_2+
1086 513 -1 53 0.000000 ~t_1 ~b_1bar
1087 514 -1 53 0.000000 ~t_2 ~b_1bar
1088 515 -1 53 0.000000 ~t_1 ~b_2bar
1089 516 -1 53 0.000000 ~t_2 ~b_2bar
1090 517 -1 53 0.000000 ~d_Lbar ~u_L
1091 518 -1 53 0.000000 ~s_Lbar ~c_L
1092 519 -1 53 0.000000 ~e_L+ ~nu_eL
1093 520 -1 53 0.000000 ~mu_L+ ~nu_muL
1094 521 -1 53 0.000000 ~tau_1+ ~nu_tauL
1095 522 -1 53 0.000000 ~tau_2+ ~nu_tauL
1097 38 38 eta_tech0 0 2 0 350.00000 0.09572 0.95720 0.00000E+00 1
1098 523 1 32 0.442959 b bbar
1099 524 1 32 0.000000 t tbar
1100 525 1 32 0.557041 g g
1102 39 39 LQ_ue LQ_uebar -1 1 1 200.00000 0.39162 3.91621 0.00000E+00 1
1103 526 1 0 1.000000 u e-
1105 40 40 R0 Rbar0 0 0 1 5000.00000 417.32877 4173.28769 0.00000E+00 1
1106 527 1 32 0.215122 d sbar
1107 528 1 32 0.215122 u cbar
1108 529 1 32 0.215122 s bbar
1109 530 1 32 0.214727 c tbar
1110 531 -1 32 0.000000 b b'bar
1111 532 -1 32 0.000000 t t'bar
1112 533 1 0 0.069953 e- mu+
1113 534 1 0 0.069953 mu- tau+
1114 535 -1 0 0.000000 tau- tau'+
1116 51 51 pi_tech0 0 0 0 110.00000 0.02899 0.28994 0.00000E+00 1
1117 536 1 32 0.017504 s sbar
1118 537 1 32 0.053796 c cbar
1119 538 1 32 0.857596 b bbar
1120 539 1 32 0.000000 t tbar
1121 540 1 0 0.000000 e- e+
1122 541 1 0 0.000251 mu- mu+
1123 542 1 0 0.070854 tau- tau+
1124 543 1 32 0.000000 g g
1126 52 52 pi_tech+ pi_tech- 3 0 1 110.00000 0.01070 0.10704 0.00000E+00 1
1127 544 1 32 0.042758 c sbar
1128 545 1 32 0.909078 c bbar
1129 546 1 32 0.000000 W+ b bbar
1130 547 1 0 0.000000 e+ nu_e
1131 548 1 0 0.000170 mu+ nu_mu
1132 549 1 0 0.047994 tau+ nu_tau
1134 53 53 pi'_tech0 0 0 0 110.00000 0.04547 0.45469 0.00000E+00 1
1135 550 1 32 0.011162 s sbar
1136 551 1 32 0.034304 c cbar
1137 552 1 32 0.546865 b bbar
1138 553 1 32 0.000000 t tbar
1139 554 1 0 0.000000 e- e+
1140 555 1 0 0.000160 mu- mu+
1141 556 1 0 0.045181 tau- tau+
1142 557 1 32 0.362328 g g
1144 54 54 rho_tech0 0 0 0 210.00000 0.87415 8.74152 0.00000E+00 1
1145 558 1 0 0.144048 W+ W-
1146 559 1 0 0.352384 W+ pi_tech-
1147 560 1 0 0.352384 pi_tech+ W-
1148 561 1 0 0.000000 pi_tech+ pi_tech-
1149 562 1 0 0.081586 gamma pi_tech0
1150 563 1 0 0.029378 gamma pi'_tech0
1151 564 1 0 0.001501 Z0 pi_tech0
1152 565 1 0 0.000721 Z0 pi'_tech0
1153 566 1 32 0.004490 d dbar
1154 567 1 32 0.006482 u ubar
1155 568 1 32 0.004490 s sbar
1156 569 1 32 0.006482 c cbar
1157 570 1 32 0.004485 b bbar
1158 571 1 32 0.000000 t tbar
1159 572 -1 32 0.000000 b' b'bar
1160 573 -1 32 0.000000 t' t'bar
1161 574 1 0 0.002889 e- e+
1162 575 1 0 0.000967 nu_e nu_ebar
1163 576 1 0 0.002889 mu- mu+
1164 577 1 0 0.000967 nu_mu nu_mubar
1165 578 1 0 0.002889 tau- tau+
1166 579 1 0 0.000967 nu_tau nu_taubar
1167 580 -1 0 0.000000 tau'- tau'+
1168 581 -1 0 0.000000 nu'_tau nu'_taubar
1170 55 55 rho_tech+ rho_tech- 3 0 1 210.00000 0.62673 6.26729 0.00000E+00 1
1171 582 1 0 0.143941 W+ Z0
1172 583 1 0 0.491500 W+ pi_tech0
1173 584 1 0 0.194259 pi_tech+ Z0
1174 585 1 0 0.000000 pi_tech+ pi_tech0
1175 586 1 0 0.113795 pi_tech+ gamma
1176 587 1 0 0.008460 W+ pi'_tech0
1177 588 1 32 0.014790 dbar u
1178 589 1 32 0.000759 dbar c
1179 590 1 32 0.000000 dbar t
1180 591 -1 32 0.000000 dbar t'
1181 592 1 32 0.000759 sbar u
1182 593 1 32 0.014762 sbar c
1183 594 1 32 0.000003 sbar t
1184 595 -1 32 0.000000 sbar t'
1185 596 1 32 0.000000 bbar u
1186 597 1 32 0.000027 bbar c
1187 598 1 32 0.001934 bbar t
1188 599 -1 32 0.000000 bbar t'
1189 600 -1 32 0.000000 b'bar u
1190 601 -1 32 0.000000 b'bar c
1191 602 -1 32 0.000000 b'bar t
1192 603 -1 32 0.000000 b'bar t'
1193 604 1 0 0.005003 e+ nu_e
1194 605 1 0 0.005003 mu+ nu_mu
1195 606 1 0 0.005002 tau+ nu_tau
1196 607 -1 0 0.000000 tau'+ nu'_tau
1198 56 56 omega_tech 0 0 0 210.00000 0.19204 1.92039 0.00000E+00 1
1199 608 1 0 0.133696 gamma pi_tech0
1200 609 1 0 0.003283 Z0 pi_tech0
1201 610 1 0 0.371467 gamma pi'_tech0
1202 611 1 0 0.006835 Z0 pi'_tech0
1203 612 1 0 0.031199 W+ pi_tech-
1204 613 1 0 0.031199 pi_tech+ W-
1205 614 1 0 0.001639 W+ W-
1206 615 1 0 0.000000 pi_tech+ pi_tech-
1207 616 1 32 0.047205 d dbar
1208 617 1 32 0.073708 u ubar
1209 618 1 32 0.047205 s sbar
1210 619 1 32 0.073705 c cbar
1211 620 1 32 0.047161 b bbar
1212 621 1 32 0.000000 t tbar
1213 622 -1 32 0.000000 b' b'bar
1214 623 -1 32 0.000000 t' t'bar
1215 624 1 0 0.034740 e- e+
1216 625 1 0 0.009160 nu_e nu_ebar
1217 626 1 0 0.034740 mu- mu+
1218 627 1 0 0.009160 nu_mu nu_mubar
1219 628 1 0 0.034738 tau- tau+
1220 629 1 0 0.009160 nu_tau nu_taubar
1221 630 -1 0 0.000000 tau'- tau'+
1222 631 -1 0 0.000000 nu'_tau nu'_taubar
1224 61 61 H_L++ H_L-- 6 0 1 200.00000 0.88161 8.81606 0.00000E+00 1
1225 632 1 0 0.090264 e+ e+
1226 633 1 0 0.001805 e+ mu+
1227 634 1 0 0.001805 e+ tau+
1228 635 1 0 0.090264 mu+ mu+
1229 636 1 0 0.001805 mu+ tau+
1230 637 1 0 0.812250 tau+ tau+
1231 638 1 0 0.001806 W+ W+
1233 62 62 H_R++ H_R-- 6 0 1 200.00000 0.88001 8.80013 0.00000E+00 1
1234 639 1 0 0.090428 e+ e+
1235 640 1 0 0.001809 e+ mu+
1236 641 1 0 0.001808 e+ tau+
1237 642 1 0 0.090428 mu+ mu+
1238 643 1 0 0.001808 mu+ tau+
1239 644 1 0 0.813720 tau+ tau+
1240 645 1 0 0.000000 W_R+ W_R+
1242 63 63 W_R+ W_R- 3 0 1 750.00000 19.32815 193.28147 0.00000E+00 1
1243 646 1 32 0.325914 dbar u
1244 647 1 32 0.016735 dbar c
1245 648 1 32 0.000009 dbar t
1246 649 1 32 0.016735 sbar u
1247 650 1 32 0.325320 sbar c
1248 651 1 32 0.000554 sbar t
1249 652 1 32 0.000010 bbar u
1250 653 1 32 0.000603 bbar c
1251 654 1 32 0.314119 bbar t
1252 655 1 0 0.000000 e+ nu_Re
1253 656 1 0 0.000000 mu+ nu_Rmu
1254 657 1 0 0.000000 tau+ nu_Rtau
1256 64 64 nu_Re nu_Rebar 0 0 1 750.00000 0.00000 0.00000 0.00000E+00 0
1258 65 65 nu_Rmu nu_Rmubar 0 0 1 750.00000 0.00000 0.00000 0.00000E+00 0
1260 66 66 nu_Rtau nu_Rtaubar 0 0 1 750.00000 0.00000 0.00000 0.00000E+00 0
1262 81 81 specflav 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1264 82 82 rndmflav rndmflavbar 0 0 1 0.00000 0.00000 0.00000 0.00000E+00 0
1266 83 83 phasespa 0 0 0 1.00000 0.00000 0.00000 0.00000E+00 1
1267 658 1 12 1.000000 rndmflav rndmflavbar
1269 84 84 c-hadron c-hadronbar 2 0 1 2.00000 0.00000 0.00000 1.00000E-01 1
1270 659 1 42 0.080000 e+ nu_e s specflav
1271 660 1 42 0.080000 mu+ nu_mu s specflav
1272 661 1 11 0.760000 u dbar s specflav
1273 662 1 11 0.080000 u sbar s specflav
1275 85 85 b-hadron b-hadronbar -1 0 1 5.00000 0.00000 0.00000 3.87000E-01 1
1276 663 1 42 0.105000 nu_ebar e- c specflav
1277 664 1 42 0.105000 nu_mubar mu- c specflav
1278 665 1 42 0.040000 nu_taubar tau- c specflav
1279 666 1 42 0.500000 ubar d c specflav
1280 667 1 42 0.080000 ubar c d specflav
1281 668 1 42 0.140000 cbar s c specflav
1282 669 1 42 0.010000 cbar c s specflav
1283 670 1 42 0.015000 ubar d u specflav
1284 671 1 42 0.005000 cbar s u specflav
1286 91 91 cluster 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1288 92 92 string 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1290 93 93 indep. 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1292 94 94 CMshower 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1294 95 95 SPHEaxis 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1296 96 96 THRUaxis 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1298 97 97 CLUSjet 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1300 98 98 CELLjet 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1302 99 99 table 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1304 110 101 rho_diff0 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1306 111 102 pi0 0 0 0 0.13498 0.00000 0.00000 3.00000E-05 0
1307 672 1 0 0.988000 gamma gamma
1308 673 1 2 0.012000 gamma e- e+
1310 113 103 rho0 0 0 0 0.76850 0.15100 0.40000 0.00000E+00 1
1311 674 1 3 0.998739 pi+ pi-
1312 675 1 0 0.000790 pi0 gamma
1313 676 1 0 0.000380 eta gamma
1314 677 1 0 0.000046 mu- mu+
1315 678 1 0 0.000045 e- e+
1317 115 104 a_20 0 0 0 1.31800 0.10700 0.25000 0.00000E+00 1
1318 679 1 0 0.347250 rho+ pi-
1319 680 1 0 0.347250 rho- pi+
1320 681 1 0 0.144000 eta pi0
1321 682 1 0 0.104000 omega pi+ pi-
1322 683 1 0 0.024500 K+ K-
1323 684 1 0 0.012250 K_L0 K_L0
1324 685 1 0 0.012250 K_S0 K_S0
1325 686 1 0 0.002800 pi0 gamma
1326 687 1 0 0.005700 eta' pi0
1328 130 105 K_L0 0 0 0 0.49767 0.00000 0.00000 1.55000E+04 0
1329 688 1 0 0.211200 pi0 pi0 pi0
1330 689 1 0 0.125600 pi+ pi- pi0
1331 690 1 42 0.193900 nu_ebar e- pi+
1332 691 1 42 0.193900 nu_e e+ pi-
1333 692 1 42 0.135900 nu_mubar mu- pi+
1334 693 1 42 0.135900 nu_mu mu+ pi-
1335 694 1 0 0.002000 pi+ pi-
1336 695 1 0 0.001000 pi0 pi0
1337 696 1 0 0.000600 gamma gamma
1339 210 106 pi_diffr+ pi_diffr- 3 0 1 0.00000 0.00000 0.00000 0.00000E+00 0
1341 211 107 pi+ pi- 3 0 1 0.13957 0.00000 0.00000 7.80450E+03 0
1342 697 1 0 0.999877 mu+ nu_mu
1343 698 1 0 0.000123 e+ nu_e
1345 213 108 rho+ rho- 3 0 1 0.76690 0.14900 0.40000 0.00000E+00 1
1346 699 1 3 0.999550 pi+ pi0
1347 700 1 0 0.000450 pi+ gamma
1349 215 109 a_2+ a_2- 3 0 1 1.31800 0.10700 0.25000 0.00000E+00 1
1350 701 1 0 0.347250 rho+ pi0
1351 702 1 0 0.347250 rho0 pi+
1352 703 1 0 0.144000 eta pi+
1353 704 1 0 0.104000 omega pi+ pi0
1354 705 1 0 0.049000 K+ Kbar0
1355 706 1 0 0.002800 pi+ gamma
1356 707 1 0 0.005700 eta' pi+
1358 220 110 omega_di 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1360 221 111 eta 0 0 0 0.54745 0.00000 0.00000 0.00000E+00 1
1361 708 1 0 0.392300 gamma gamma
1362 709 1 0 0.321000 pi0 pi0 pi0
1363 710 1 0 0.231700 pi+ pi- pi0
1364 711 1 0 0.047800 gamma pi+ pi-
1365 712 1 2 0.004900 gamma e- e+
1366 713 1 0 0.001300 pi+ pi- e- e+
1367 714 1 0 0.000300 gamma mu- mu+
1368 715 1 0 0.000700 pi0 gamma gamma
1370 223 112 omega 0 0 0 0.78194 0.00843 0.10000 0.00000E+00 1
1371 716 1 1 0.890000 pi+ pi- pi0
1372 717 1 0 0.086930 gamma pi0
1373 718 1 3 0.022100 pi+ pi-
1374 719 1 0 0.000830 eta gamma
1375 720 1 0 0.000070 pi0 pi0 gamma
1376 721 1 0 0.000070 e- e+
1378 225 113 f_2 0 0 0 1.27500 0.18500 0.17000 0.00000E+00 1
1379 722 1 0 0.564000 pi+ pi-
1380 723 1 0 0.282000 pi0 pi0
1381 724 1 0 0.072000 pi+ pi- pi0 pi0
1382 725 1 0 0.028000 pi+ pi- pi+ pi-
1383 726 1 0 0.023000 K+ K-
1384 727 1 0 0.011500 K_L0 K_L0
1385 728 1 0 0.011500 K_S0 K_S0
1386 729 1 0 0.005000 eta eta
1387 730 1 0 0.003000 pi0 pi0 pi0 pi0
1389 310 114 K_S0 0 0 0 0.49767 0.00000 0.00000 2.67620E+01 1
1390 731 1 0 0.686100 pi+ pi-
1391 732 1 0 0.313900 pi0 pi0
1393 311 115 K0 Kbar0 0 0 1 0.49767 0.00000 0.00000 0.00000E+00 1
1394 733 1 0 0.500000 K_L0
1395 734 1 0 0.500000 K_S0
1397 313 116 K*0 K*bar0 0 0 1 0.89610 0.05050 0.20000 0.00000E+00 1
1398 735 1 3 0.665000 K+ pi-
1399 736 1 3 0.333000 K0 pi0
1400 737 1 0 0.002000 K0 gamma
1402 315 117 K*_20 K*_2bar0 0 0 1 1.43200 0.10900 0.12000 0.00000E+00 1
1403 738 1 0 0.333000 K+ pi-
1404 739 1 0 0.166000 K0 pi0
1405 740 1 0 0.168000 K*+ pi-
1406 741 1 0 0.084000 K*0 pi0
1407 742 1 0 0.087000 K*+ pi- pi0
1408 743 1 0 0.043000 K*0 pi+ pi-
1409 744 1 0 0.059000 K+ rho-
1410 745 1 0 0.029000 K0 rho0
1411 746 1 0 0.029000 K0 omega
1412 747 1 0 0.002000 K0 eta
1414 321 118 K+ K- 3 0 1 0.49360 0.00000 0.00000 3.70900E+03 0
1415 748 1 0 0.635200 mu+ nu_mu
1416 749 1 0 0.211600 pi+ pi0
1417 750 1 0 0.055900 pi+ pi+ pi-
1418 751 1 0 0.017300 pi+ pi0 pi0
1419 752 1 42 0.048200 nu_e e+ pi0
1420 753 1 42 0.031800 nu_mu mu+ pi0
1422 323 119 K*+ K*- 3 0 1 0.89160 0.04980 0.20000 0.00000E+00 1
1423 754 1 3 0.666000 K0 pi+
1424 755 1 3 0.333000 K+ pi0
1425 756 1 0 0.001000 K+ gamma
1427 325 120 K*_2+ K*_2- 3 0 1 1.42500 0.09800 0.12000 0.00000E+00 1
1428 757 1 0 0.332000 K0 pi+
1429 758 1 0 0.166000 K+ pi0
1430 759 1 0 0.168000 K*0 pi+
1431 760 1 0 0.084000 K*+ pi0
1432 761 1 0 0.086000 K*0 pi+ pi0
1433 762 1 0 0.043000 K*+ pi+ pi-
1434 763 1 0 0.059000 K0 rho+
1435 764 1 0 0.029000 K+ rho0
1436 765 1 0 0.029000 K+ omega
1437 766 1 0 0.002000 K+ eta
1438 767 1 0 0.002000 K+ gamma
1440 330 121 phi_diff 0 0 0 0.00000 0.00000 0.00000 0.00000E+00 0
1442 331 122 eta' 0 0 0 0.95777 0.00020 0.00200 0.00000E+00 1
1443 768 1 0 0.437000 pi+ pi- eta
1444 769 1 0 0.208000 pi0 pi0 eta
1445 770 1 0 0.302000 gamma rho0
1446 771 1 0 0.030200 gamma omega
1447 772 1 0 0.021200 gamma gamma
1448 773 1 0 0.001600 pi0 pi0 pi0
1450 333 123 phi 0 0 0 1.01940 0.00443 0.01500 0.00000E+00 1
1451 774 1 3 0.489470 K+ K-
1452 775 1 3 0.340000 K_L0 K_S0
1453 776 1 0 0.043000 rho- pi+
1454 777 1 0 0.043000 rho0 pi0
1455 778 1 0 0.043000 rho+ pi-
1456 779 1 1 0.027000 pi+ pi- pi0
1457 780 1 0 0.012600 gamma eta
1458 781 1 0 0.001300 pi0 gamma
1459 782 1 0 0.000300 e- e+
1460 783 1 0 0.000250 mu- mu+
1461 784 1 0 0.000080 pi+ pi-
1463 335 124 f'_2 0 0 0 1.52500 0.07600 0.20000 0.00000E+00 1
1464 785 1 0 0.444000 K+ K-
1465 786 1 0 0.222000 K_L0 K_L0
1466 787 1 0 0.222000 K_S0 K_S0
1467 788 1 0 0.104000 eta eta
1468 789 1 0 0.004000 pi+ pi-
1469 790 1 0 0.004000 pi0 pi0
1471 411 125 D+ D- 3 0 1 1.86930 0.00000 0.00000 3.17000E-01 1
1472 791 0 42 0.070000 e+ nu_e Kbar0
1473 792 0 42 0.065000 e+ nu_e K*bar0
1474 793 0 42 0.005000 e+ nu_e Kbar0 pi0
1475 794 0 42 0.005000 e+ nu_e K- pi+
1476 795 0 42 0.011000 e+ nu_e K*bar0 pi0
1477 796 0 42 0.011000 e+ nu_e K*- pi+
1478 797 0 42 0.001000 e+ nu_e pi0
1479 798 0 42 0.001000 e+ nu_e eta
1480 799 0 42 0.001000 e+ nu_e eta'
1481 800 0 42 0.001000 e+ nu_e rho0
1482 801 0 42 0.001000 e+ nu_e omega
1483 802 1 42 0.070000 mu+ nu_mu Kbar0
1484 803 1 42 0.065000 mu+ nu_mu K*bar0
1485 804 1 42 0.005000 mu+ nu_mu Kbar0 pi0
1486 805 1 42 0.005000 mu+ nu_mu K- pi+
1487 806 1 42 0.011000 mu+ nu_mu K*bar0 pi0
1488 807 1 42 0.011000 mu+ nu_mu K*- pi+
1489 808 1 42 0.001000 mu+ nu_mu pi0
1490 809 1 42 0.001000 mu+ nu_mu eta
1491 810 1 42 0.001000 mu+ nu_mu eta'
1492 811 1 42 0.001000 mu+ nu_mu rho0
1493 812 1 42 0.001000 mu+ nu_mu omega
1494 813 0 0 0.026000 Kbar0 pi+
1495 814 0 0 0.019000 K*bar0 pi+
1496 815 0 0 0.066000 Kbar0 rho+
1497 816 0 0 0.041000 K*bar0 rho+
1498 817 0 0 0.045000 K*_1bar0 pi+
1499 818 0 0 0.076000 Kbar0 a_1+
1500 819 0 0 0.007300 Kbar0 K+
1501 820 0 0 0.004700 K*bar0 K+
1502 821 0 0 0.004700 Kbar0 K*+
1503 822 0 0 0.026000 K*bar0 K*+
1504 823 0 0 0.001000 pi0 pi+
1505 824 0 0 0.000600 pi0 rho+
1506 825 0 0 0.006600 eta pi+
1507 826 0 0 0.005000 eta rho+
1508 827 0 0 0.003000 eta' pi+
1509 828 0 0 0.003000 eta' rho+
1510 829 0 0 0.000600 rho0 pi+
1511 830 0 0 0.000600 rho0 rho+
1512 831 0 0 0.001000 omega pi+
1513 832 0 0 0.001000 omega rho+
1514 833 0 0 0.006000 phi pi+
1515 834 0 0 0.005000 phi rho+
1516 835 0 0 0.012000 Kbar0 pi+ pi0
1517 836 0 0 0.005700 K*bar0 pi+ rho0
1518 837 0 0 0.067000 K- pi+ pi+
1519 838 0 0 0.008000 K- rho+ pi+
1520 839 0 0 0.002200 pi+ pi+ pi-
1521 840 0 0 0.027000 Kbar0 K+ Kbar0
1522 841 0 0 0.004000 K- K+ pi+
1523 842 0 0 0.019000 phi pi+ pi0
1524 843 0 0 0.012000 Kbar0 pi+ pi+ pi-
1525 844 0 0 0.002000 K*bar0 pi+ pi+ pi-
1526 845 0 0 0.009000 K- pi+ pi+ pi0
1527 846 0 0 0.021800 pi+ pi+ pi- pi0
1528 847 0 0 0.001000 K- pi+ pi+ pi+ pi-
1529 848 0 0 0.022000 K- pi+ pi+ pi0 pi0
1530 849 0 0 0.087000 Kbar0 pi+ pi+ pi- pi0
1531 850 0 0 0.001000 Kbar0 rho0 pi+ pi+ pi-
1532 851 0 0 0.001900 K- rho0 pi+ pi+ pi0
1533 852 0 0 0.001500 pi+ pi+ pi+ pi- pi-
1534 853 0 0 0.002800 rho0 pi+ pi+ pi- pi0
1536 413 126 D*+ D*- 3 0 1 2.01000 0.00000 0.00000 0.00000E+00 1
1537 854 1 3 0.683000 D0 pi+
1538 855 1 3 0.306000 D+ pi0
1539 856 1 0 0.011000 D+ gamma
1541 415 127 D*_2+ D*_2- 3 0 1 2.46000 0.02300 0.12000 0.00000E+00 1
1542 857 1 0 0.300000 D0 pi+
1543 858 1 0 0.150000 D+ pi0
1544 859 1 0 0.160000 D*0 pi+
1545 860 1 0 0.080000 D*+ pi0
1546 861 1 0 0.130000 D*0 pi+ pi0
1547 862 1 0 0.060000 D*+ pi+ pi-
1548 863 1 0 0.080000 D0 pi+ pi0
1549 864 1 0 0.040000 D+ pi+ pi-
1551 421 128 D0 Dbar0 0 0 1 1.86450 0.00000 0.00000 1.24400E-01 1
1552 865 0 42 0.034000 e+ nu_e K-
1553 866 0 42 0.027000 e+ nu_e K*-
1554 867 0 42 0.002000 e+ nu_e Kbar0 pi-
1555 868 0 42 0.002000 e+ nu_e K- pi0
1556 869 0 42 0.004000 e+ nu_e K*bar0 pi-
1557 870 0 42 0.004000 e+ nu_e K*- pi0
1558 871 0 42 0.002000 e+ nu_e pi-
1559 872 0 42 0.002000 e+ nu_e rho-
1560 873 1 42 0.034000 mu+ nu_mu K-
1561 874 1 42 0.027000 mu+ nu_mu K*-
1562 875 1 42 0.002000 mu+ nu_mu Kbar0 pi-
1563 876 1 42 0.002000 mu+ nu_mu K- pi0
1564 877 1 42 0.004000 mu+ nu_mu K*bar0 pi-
1565 878 1 42 0.004000 mu+ nu_mu K*- pi0
1566 879 1 42 0.002000 mu+ nu_mu pi-
1567 880 1 42 0.002000 mu+ nu_mu rho-
1568 881 0 0 0.036500 K- pi+
1569 882 0 0 0.045000 K*- pi+
1570 883 0 0 0.073000 K- rho+
1571 884 0 0 0.062000 K*- rho+
1572 885 0 0 0.021000 Kbar0 pi0
1573 886 0 0 0.021000 K*bar0 pi0
1574 887 0 0 0.021000 K*bar0 eta
1575 888 0 0 0.006100 Kbar0 rho0
1576 889 0 0 0.015000 K*bar0 rho0
1577 890 0 0 0.025000 Kbar0 omega
1578 891 0 0 0.008800 Kbar0 phi
1579 892 0 0 0.074000 K- a_1+
1580 893 0 0 0.010900 K_1- pi+
1581 894 0 0 0.004100 K- K+
1582 895 0 0 0.002000 K*- K+
1583 896 0 0 0.003500 K- K*+
1584 897 0 0 0.001100 Kbar0 K0
1585 898 0 0 0.001000 K*bar0 K0
1586 899 0 0 0.002700 K*bar0 K*0
1587 900 0 0 0.001600 pi+ pi-
1588 901 0 0 0.001600 pi0 pi0
1589 902 0 0 0.001800 phi rho0
1590 903 0 0 0.011000 K- pi+ pi0
1591 904 0 0 0.006300 K- pi+ rho0
1592 905 0 0 0.005200 K- K+ Kbar0
1593 906 0 0 0.018000 Kbar0 pi+ pi-
1594 907 0 0 0.016000 K*bar0 pi+ pi-
1595 908 0 0 0.003400 K- K0 pi+
1596 909 0 0 0.003600 K*bar0 K+ pi-
1597 910 0 0 0.000900 K_S0 K_S0 K_S0
1598 911 0 0 0.000600 phi pi+ pi-
1599 912 0 0 0.015000 pi+ pi- pi0
1600 913 0 0 0.092300 K- pi+ pi0 pi0
1601 914 0 0 0.018000 K- pi+ pi+ pi-
1602 915 0 0 0.022000 Kbar0 pi+ pi- pi0
1603 916 0 0 0.007700 K*bar0 pi+ pi- pi0
1604 917 0 0 0.009000 Kbar0 K+ K- pi0
1605 918 0 0 0.007500 pi+ pi+ pi- pi-
1606 919 0 0 0.024000 K- pi+ pi+ pi- pi0
1607 920 0 0 0.008500 Kbar0 pi+ pi+ pi- pi-
1608 921 0 0 0.067000 Kbar0 pi+ pi- pi0 pi0
1609 922 0 0 0.051100 Kbar0 rho0 pi0 pi0 pi0
1610 923 0 0 0.017000 pi+ pi+ pi- pi- pi0
1611 924 0 0 0.000400 rho0 pi+ pi+ pi- pi-
1612 925 0 0 0.002800 K+ K- pi+ pi- pi0
1614 423 129 D*0 D*bar0 0 0 1 2.00670 0.00000 0.00000 0.00000E+00 1
1615 926 1 3 0.619000 D0 pi0
1616 927 1 0 0.381000 D0 gamma
1618 425 130 D*_20 D*_2bar0 0 0 1 2.46000 0.02300 0.12000 0.00000E+00 1
1619 928 1 0 0.300000 D+ pi-
1620 929 1 0 0.150000 D0 pi0
1621 930 1 0 0.160000 D*+ pi-
1622 931 1 0 0.080000 D*0 pi0
1623 932 1 0 0.130000 D*+ pi- pi0
1624 933 1 0 0.060000 D*0 pi+ pi-
1625 934 1 0 0.080000 D+ pi- pi0
1626 935 1 0 0.040000 D0 pi+ pi-
1628 431 131 D_s+ D_s- 3 0 1 1.96850 0.00000 0.00000 1.40000E-01 1
1629 936 0 0 0.010000 tau+ nu_tau
1630 937 0 42 0.020000 e+ nu_e eta
1631 938 0 42 0.020000 e+ nu_e eta'
1632 939 0 42 0.030000 e+ nu_e phi
1633 940 0 42 0.005000 e+ nu_e K+ K-
1634 941 0 42 0.005000 e+ nu_e K0 Kbar0
1635 942 1 42 0.020000 mu+ nu_mu eta
1636 943 1 42 0.020000 mu+ nu_mu eta'
1637 944 1 42 0.030000 mu+ nu_mu phi
1638 945 1 42 0.005000 mu+ nu_mu K+ K-
1639 946 1 42 0.005000 mu+ nu_mu K0 Kbar0
1640 947 0 0 0.015000 eta pi+
1641 948 0 0 0.037000 eta' pi+
1642 949 0 0 0.028000 phi pi+
1643 950 0 0 0.079000 eta rho+
1644 951 0 0 0.095000 eta' rho+
1645 952 0 0 0.052000 phi rho+
1646 953 0 0 0.007800 f_0 pi+
1647 954 0 0 0.001000 pi+ pi0
1648 955 0 0 0.001000 rho+ pi0
1649 956 0 0 0.001000 pi+ rho0
1650 957 0 0 0.001000 rho+ rho0
1651 958 0 0 0.028000 K+ Kbar0
1652 959 0 0 0.033000 K*+ Kbar0
1653 960 0 0 0.026000 K+ K*bar0
1654 961 0 0 0.050000 K*+ K*bar0
1655 962 0 0 0.010000 p+ nbar0
1656 963 0 0 0.005000 eta K+
1657 964 0 0 0.005000 eta' K+
1658 965 0 0 0.005000 phi K+
1659 966 0 0 0.005000 eta K*+
1660 967 0 13 0.250000 u dbar s sbar
1661 968 0 13 0.095200 u dbar
1663 433 132 D*_s+ D*_s- 3 0 1 2.11240 0.00000 0.00000 0.00000E+00 1