Source code for secsgem.secs.functions.s12f04

#####################################################################
# s12f04.py
#
# (c) Copyright 2021, Benjamin Parzella. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#####################################################################
"""Class for stream 12 function 04."""

from secsgem.secs.functions.base import SecsStreamFunction
from secsgem.secs.data_items import MID
from secsgem.secs.data_items import IDTYP
from secsgem.secs.data_items import FNLOC
from secsgem.secs.data_items import ORLOC
from secsgem.secs.data_items import RPSEL
from secsgem.secs.data_items import REFP
from secsgem.secs.data_items import DUTMS
from secsgem.secs.data_items import XDIES
from secsgem.secs.data_items import YDIES
from secsgem.secs.data_items import ROWCT
from secsgem.secs.data_items import COLCT
from secsgem.secs.data_items import PRDCT
from secsgem.secs.data_items import BCEQU
from secsgem.secs.data_items import NULBC
from secsgem.secs.data_items import MLCL


[docs]class SecsS12F04(SecsStreamFunction): """ map setup data. **Data Items** - :class:`MID <secsgem.secs.data_items.MID>` - :class:`IDTYP <secsgem.secs.data_items.IDTYP>` - :class:`FNLOC <secsgem.secs.data_items.FNLOC>` - :class:`ORLOC <secsgem.secs.data_items.ORLOC>` - :class:`RPSEL <secsgem.secs.data_items.RPSEL>` - :class:`REFP <secsgem.secs.data_items.REFP>` - :class:`DUTMS <secsgem.secs.data_items.DUTMS>` - :class:`XDIES <secsgem.secs.data_items.XDIES>` - :class:`YDIES <secsgem.secs.data_items.YDIES>` - :class:`ROWCT <secsgem.secs.data_items.ROWCT>` - :class:`COLCT <secsgem.secs.data_items.COLCT>` - :class:`PRDCT <secsgem.secs.data_items.PRDCT>` - :class:`BCEQU <secsgem.secs.data_items.BCEQU>` - :class:`NULBC <secsgem.secs.data_items.NULBC>` - :class:`MLCL <secsgem.secs.data_items.MLCL>` **Structure**:: >>> import secsgem.secs >>> secsgem.secs.functions.SecsS12F04 { MID: A/B[80] IDTYP: B[1] FNLOC: U2 ORLOC: B[1] RPSEL: U1 REFP: [ DATA: I1/I2/I4/I8 ... ] DUTMS: A XDIES: U1/U2/U4/U8/F4/F8 YDIES: U1/U2/U4/U8/F4/F8 ROWCT: U1/U2/U4/U8 COLCT: U1/U2/U4/U8 PRDCT: U1/U2/U4/U8 BCEQU: U1/A NULBC: U1/A MLCL: U1/U2/U4/U8 } **Example**:: >>> import secsgem.secs >>> secsgem.secs.functions.SecsS12F04({ ... "MID": "materialID", ... "IDTYP": secsgem.secs.data_items.IDTYP.FILM_FRAME, ... "FNLOC": 0, ... "ORLOC": secsgem.secs.data_items.ORLOC.CENTER_DIE, ... "RPSEL": 0, ... "REFP": [[1,2], [2,3]], ... "DUTMS": "unit", ... "XDIES": 100, ... "YDIES": 100, ... "ROWCT": 10, ... "COLCT": 10, ... "PRDCT": 100, ... "BCEQU": [1, 3, 5, 7], ... "NULBC": "{x}", ... "MLCL": 0}) S12F4 <L [15] <A "materialID"> <B 0x2> <U2 0 > <B 0x0> <U1 0 > <L [2] <I1 1 2 > <I1 2 3 > > <A "unit"> <U1 100 > <U1 100 > <U1 10 > <U1 10 > <U1 100 > <U1 1 3 5 7 > <A "{x}"> <U1 0 > > . :param value: parameters for this function (see example) :type value: dict """ _stream = 12 _function = 4 _data_format = [ MID, IDTYP, FNLOC, ORLOC, RPSEL, [REFP], DUTMS, XDIES, YDIES, ROWCT, COLCT, PRDCT, BCEQU, NULBC, MLCL ] _to_host = False _to_equipment = True _has_reply = False _is_reply_required = False _is_multi_block = False