1 package JSci.physics.particles; 2 3 import JSci.physics.quantum.QuantumParticle; 4 5 10 public final class Electron extends Lepton { 11 14 public Electron() {} 15 19 public double restMass() {return 0.510998902;} 20 24 public int charge() {return -1;} 25 29 public int eLeptonQN() {return 1;} 30 34 public int muLeptonQN() {return 0;} 35 39 public int tauLeptonQN() {return 0;} 40 43 public QuantumParticle anti() { 44 return new Positron(); 45 } 46 49 public boolean isAnti(QuantumParticle qp) { 50 return (qp!=null) && (qp instanceof Positron); 51 } 52 55 public String toString() { 56 return new String ("Electron"); 57 } 58 61 public Electron emit(Photon y) { 62 momentum=momentum.subtract(y.momentum); 63 return this; 64 } 65 68 public Electron absorb(Photon y) { 69 momentum=momentum.add(y.momentum); 70 return this; 71 } 72 75 public ElectronNeutrino emit(WMinus w) { 76 ElectronNeutrino n=new ElectronNeutrino(); 77 n.momentum=momentum.subtract(w.momentum); 78 return n; 79 } 80 83 public ElectronNeutrino absorb(WPlus w) { 84 ElectronNeutrino n=new ElectronNeutrino(); 85 n.momentum=momentum.add(w.momentum); 86 return n; 87 } 88 91 public Electron emit(ZZero z) { 92 momentum=momentum.subtract(z.momentum); 93 return this; 94 } 95 98 public Electron absorb(ZZero z) { 99 momentum=momentum.add(z.momentum); 100 return this; 101 } 102 } 103 104 | Popular Tags |