KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > physics > particles > GaugeBoson


1 package JSci.physics.particles;
2
3 import JSci.physics.quantum.QuantumParticle;
4
5 /**
6 * A class representing gauge bosons.
7 * @version 1.5
8 * @author Mark Hale
9 */

10 public abstract class GaugeBoson extends QuantumParticle {
11         /**
12         * Constructs a gauge boson.
13         */

14         public GaugeBoson() {}
15         /**
16         * Returns the baryon number.
17         * @return 0
18         */

19         public final int baryonQN() {return 0;}
20         /**
21         * Returns the strangeness number.
22         * @return 0
23         */

24         public final int strangeQN() {return 0;}
25         /**
26         * Returns the number of 1/2 units of isospin.
27         * @return 0
28         */

29         public final int isospin() {return 0;}
30         /**
31         * Returns the number of 1/2 units of the z-component of isospin.
32         * @return 0
33         */

34         public final int isospinZ() {return 0;}
35         /**
36         * Returns the electron lepton number.
37         * @return 0
38         */

39         public final int eLeptonQN() {return 0;}
40         /**
41         * Returns the muon lepton number.
42         * @return 0
43         */

44         public final int muLeptonQN() {return 0;}
45         /**
46         * Returns the tau lepton number.
47         * @return 0
48         */

49         public final int tauLeptonQN() {return 0;}
50 }
51
52
Popular Tags