SUBSCHEMA Recons AUTHOR 'Marc-Andre Funk' /* ---------------------------------------------------------------------- */ DEFINE ESET scCommand = ( cSender = CHA8 : 'sender of the command', cReceiver = CHA8 : 'Receiver of the command', cCommand = CH64 : 'Command String itself' ) :'A slow control command' END ESET DEFINE DATAFLOW scCmds = { scCommand }; END DATAFLOW /* ---------------------------------------------------------------------- */ DEFINE ESET hvKey = ( iVersion = INTE [1,*] : 'Version of Dataflow', iTimeStart = INTE[0,9999999999] : 'start time of Validity', iTimeEnd = INTE[0,9999999999] : 'end time of Validity', iLocalId = INTE : 'Table ID for the clients', cName = CH32 : 'Dataflow Name' ) : 'The Key Table'; hvValue = ( Value = REAL : 'Value of Channel', iTimeStart = INTE : 'start time of Validity', iTimeEnd = INTE : 'end time of Validity', iLocalId = INTE : 'Table ID for the clients' ) :'A slow control example table' END ESET DEFINE DATAFLOW hvValues = { hvValue }; END DATAFLOW END SUBSCHEMA