KickJava   Java API By Example, From Geeks To Geeks.

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


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

10 public final class WPlus extends GaugeBoson {
11         /**
12         * Constructs a W+.
13         */

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

19         public double restMass() {return 80419.0;}
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 1
28         */

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

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

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

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