Esempio n. 1
0
 public Sigma(UpQuark u, DownQuark d, StrangeQuark s) : base(u, d, s)
 {
     this.symbol       = "\u03A3\u2070";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiSigma(this);
 }
Esempio n. 2
0
 public Sigma(DownQuark d1, DownQuark d2, StrangeQuark s) : base(d1, d2, s)
 {
     this.symbol       = "\u03A3\u207B";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiSigma(this);
 }
Esempio n. 3
0
 public Omega(StrangeQuark s1, StrangeQuark s2, StrangeQuark s3) : base(s1, s2, s3)
 {
     this.symbol       = "\u03A9\u207B";
     this.spin         = new Fraction(3, 2);
     this.antiParticle = new AntiOmega(this);
 }
Esempio n. 4
0
 public Sigma(UpQuark u1, UpQuark u2, StrangeQuark s) : base(u1, u2, s)
 {
     this.symbol       = "\u03A3\u207A";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiSigma(this);
 }
Esempio n. 5
0
 public CharmedOmega(StrangeQuark s1, StrangeQuark s2, CharmQuark c) : base(c, s1, s2)
 {
     this.symbol       = "\u03A9\u2070c";
     this.spin         = new Fraction(3, 2);
     this.antiParticle = new AntiCharmedOmega(this);
 }
Esempio n. 6
0
 public Hyperon(Quark q1, Quark q2, StrangeQuark s)  : base(q1, q2, s)
 {
 }
Esempio n. 7
0
 public Xi(DownQuark d, StrangeQuark s1, StrangeQuark s2) : base(d, s1, s2)
 {
     this.symbol       = "\u039E\u207B";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiXi(this);
 }
Esempio n. 8
0
 public Xi(UpQuark u, StrangeQuark s1, StrangeQuark s2) : base(u, s1, s2)
 {
     this.symbol       = "\u039E\u2070";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiXi(this);
 }
Esempio n. 9
0
 public CharmedXi(DownQuark d, StrangeQuark s, CharmQuark c) : base(d, c, s)
 {
     this.symbol       = "\u039E\u2070c";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiCharmedXi(this);
 }