01: package JSci.physics.particles;
02:
03: import JSci.physics.quantum.QuantumParticle;
04:
05: /**
06: * A class representing antihyperons.
07: * @version 1.5
08: * @author Mark Hale
09: */
10: public abstract class AntiHyperon extends AntiBaryon {
11: /**
12: * Constructs an antihyperon.
13: */
14: public AntiHyperon() {
15: }
16: }
|