jigcell.compare.cellcycle
Class GenericScanTransform.GenericScanEvent

java.lang.Object
  extended by jigcell.compare.cellcycle.GenericScanTransform.GenericScanEvent
All Implemented Interfaces:
java.lang.Comparable
Enclosing class:
GenericScanTransform

private static final class GenericScanTransform.GenericScanEvent
extends java.lang.Object
implements java.lang.Comparable

An event that occurs during the scan.


Field Summary
 int action
          Code for the action that occurred
static int DIVIDE
          Cell division
static int G1LENGTH
          Wildtype G1 length reached
static int G1STAGE
          Entry to G1
static int MASSHIGH
          Mass is too high
static int MASSLOW
          Mass is too low
static int SUBCYCLEDROP
          Subcycle species is dropping
static int SUBCYCLERISE
          Subcycle species is rising
 double time
          Time when the event occurred
 
Constructor Summary
GenericScanTransform.GenericScanEvent(double time, int action)
          Creates a new event.
 
Method Summary
 int compareTo(java.lang.Object object)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DIVIDE

public static final int DIVIDE
Cell division

See Also:
Constant Field Values

SUBCYCLERISE

public static final int SUBCYCLERISE
Subcycle species is rising

See Also:
Constant Field Values

SUBCYCLEDROP

public static final int SUBCYCLEDROP
Subcycle species is dropping

See Also:
Constant Field Values

MASSHIGH

public static final int MASSHIGH
Mass is too high

See Also:
Constant Field Values

MASSLOW

public static final int MASSLOW
Mass is too low

See Also:
Constant Field Values

G1LENGTH

public static final int G1LENGTH
Wildtype G1 length reached

See Also:
Constant Field Values

G1STAGE

public static final int G1STAGE
Entry to G1

See Also:
Constant Field Values

time

public final double time
Time when the event occurred


action

public final int action
Code for the action that occurred

Constructor Detail

GenericScanTransform.GenericScanEvent

public GenericScanTransform.GenericScanEvent(double time,
                                             int action)
Creates a new event.

Parameters:
time - Time when event occurred
action - Action that occurred
Method Detail

compareTo

public int compareTo(java.lang.Object object)
Specified by:
compareTo in interface java.lang.Comparable