Enum Constant and Description |
---|
DC
Data concentrator (first level) type of event builder.
|
EBER
Event builder and Event recorder connected with fifo - to be used with DC's or ROCs.
|
EMU
Event management unit.
|
ER
Event Recorder.
|
FCS
Farm Controller.
|
GT
GT
|
PEB
Primary event builder (one and only one event builder).
|
PEBER
Event builder and Event recorder connected with fifo - to be used with ROCs.
|
ROC
Read out controller.
|
SEB
Secondary (second level) type of event builder - to be used with DC's.
|
SEBER
Event builder and Event recorder connected with fifo - to be used with DCs.
|
SLC
Slow control component.
|
TS
Trigger supervisor.
|
USR
User component.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
description()
Get the description of this transition.
|
static CODAClass |
get(java.lang.String s)
Map from type of incoming message from CODA class name to a particular enum.
|
int |
getPriority()
Get the default priority associated with this CODA class.
|
boolean |
isEventBuilder()
Is this class representative of an event building emu?
|
boolean |
isEventRecorder()
Is this class representative of an event recording emu?
|
boolean |
isFinalEventBuilder()
Is this class representative of a final event building emu (NOT DC)?
|
static CODAClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CODAClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CODAClass TS
public static final CODAClass GT
public static final CODAClass ROC
public static final CODAClass DC
public static final CODAClass EBER
public static final CODAClass PEBER
public static final CODAClass SEBER
public static final CODAClass SEB
public static final CODAClass PEB
public static final CODAClass FCS
public static final CODAClass ER
public static final CODAClass SLC
public static final CODAClass USR
public static final CODAClass EMU
public static CODAClass[] values()
for (CODAClass c : CODAClass.values()) System.out.println(c);
public static CODAClass valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CODAClass get(java.lang.String s)
s
- CODA class name.public java.lang.String description()
Command.description()
public int getPriority()
public boolean isEventBuilder()
true
if this class represents an event building emu,
else false
.public boolean isFinalEventBuilder()
true
if this class represents a final event building emu,
else false
.public boolean isEventRecorder()
true
if this class represents an event recording emu,
else false
.