KickJava   Java API By Example, From Geeks To Geeks.

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


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

10 public final class ZZero extends GaugeBoson {
11         /**
12         * Constructs a Z0.
13         */

14         public ZZero() {}
15         /**
16         * Returns the rest mass (MeV).
17         * @return 91188.2
18         */

19         public double restMass() {return 91188.2;}
20         /**
21         * Returns the number of 1/2 units of spin.
22         * @return 2
23         */

24         public int spin() {return 2;}
25         /**
26         * Returns the electric charge.
27         * @return 0
28         */

29         public int charge() {return 0;}
30         /**
31         * Returns the antiparticle of this particle.
32         */

33         public QuantumParticle anti() {
34                 return new ZZero();
35         }
36         /**
37         * Returns true if qp is the antiparticle.
38         */

39         public boolean isAnti(QuantumParticle qp) {
40                 return (qp!=null) && (qp instanceof ZZero);
41         }
42         /**
43         * Returns a string representing this class.
44         */

45         public String JavaDoc toString() {
46                 return new String JavaDoc("Z0");
47         }
48 }
49
50
Popular Tags