-
Notifications
You must be signed in to change notification settings - Fork 16
EventID
Container for Event ID information. An Event ID is utilized to identify various events that occur in a DIS scenario.
struct FEventID
Type | Name | Description |
---|---|---|
int32 | Application | Each simulation application at a DIS site shall be assigned an application identifier unique within that site. No simulation application shall be assigned an id containin all zeros, (2e16-1), or (2e16-2). One or more simulation applications may reside in a single host computer. |
int32 | EventNumber | A general purpose Identifier used to uniquely identify up to 65535 items. |
int32 | Site | Each DIS site shall be assigned a unique Site Identifier. No site shall be assigned an ID containin all zero's, (2e16-1) or (2e16-2). |
Name | Description |
---|---|
FEventID() | Default constructor |
FEventID(DIS::EventID EventID) | Constructor that takes in the OpenDIS EventID struct |
Return | Name | Description |
---|---|---|
DIS::EventID | ToOpenDIS() | Conversion to OpenDIS EventID struct |
int32 Application
Each simulation application at a DIS site shall be assigned an application identifier unique within that site. No simulation application shall be assigned an id containin all zeros, (2e16-1), or (2e16-2). One or more simulation applications may reside in a single host computer.
Category: GRILL DIS|Structs
Range: [0, 65535]
int32 EventNumber
A general purpose Identifier used to uniquely identify up to 65535 items.
Category: GRILL DIS|Structs
Range: [0, 65535]
int32 Site
Each DIS site shall be assigned a unique Site Identifier. No site shall be assigned an ID containin all zero's, (2e16-1) or (2e16-2).
Category: GRILL DIS|Structs
Range: [0, 65535]
FEventID()
Default constructor
FEventID
(
DIS::EventID EventID
)
Constructor that takes in the OpenDIS EventID struct
Parameter | Description |
---|---|
EventID | The OpenDIS EventID struct to convert to an FEventID struct. |
DIS::ClockTime ToOpenDIS() const
Conversion to OpenDIS EventID struct.
Returns |
---|
The OpenDIS EventID struct representation of this FEventID. |