km3dq_common.lw_db_defect_library ================================= .. py:module:: km3dq_common.lw_db_defect_library Functions --------- .. autoapisummary:: km3dq_common.lw_db_defect_library.check_defect_diag_byte km3dq_common.lw_db_defect_library.decode_defect_diag_byte km3dq_common.lw_db_defect_library.decode_defect_file km3dq_common.lw_db_defect_library.read_defect_file km3dq_common.lw_db_defect_library.read_basic_defect_file Module Contents --------------- .. py:function:: check_defect_diag_byte(value, bit_list) .. py:function:: decode_defect_diag_byte(value, def_type0) Decodes the assigned defect (integer) for a given type and returns a single string. === Arguments === - value : diagnosis value for a given type - [integer] - def_type: defect type ("daq", "operation"...) - [string] === Output === - Single string contained all the corresponding defects separated by a slash Ex: 'missing_data_dst / jmergefitfailure /' .. !! processed by numpydoc !! .. py:function:: decode_defect_file(defect_file_dict, run_nb) Decode the defect file and returns === Arguments === - defect_file_dict: defect dictionnary produced by the read_defect_file function - [dictionnary] - run_nb : run number - [integer] === Output === - Defects assigned to this run. Both a dict and string (to be used in html - See qaqcprocessing/dst-process.py) are returned. Ex: {'str': ' def_data_processing : missing_data_dst / ', 'dict': {'def_data_processing': 'missing_data_dst / '}} .. !! processed by numpydoc !! .. py:function:: read_defect_file(det, def_tag='def-HEAD', type_filter=None) Read defect files stored on SFTP === Arguments === - det : detector name - [string] - Ex: "D0ARCA021", "D0ORCA018"... - def_tag : defect tag - [string] - type_filter : if not empty, filter on the defect type - If empty, read all defect files except the sign_off (specific function defined) [array of strings] - Ex: ["daq", "operation"] === Output === - Dictionnary with def_[defect] as keys and a value for each affected run. This value will be decoded by the decode_defect_diag_byte function. Ex: {'def_daq': {}, 'def_operation': {16501: 1, 16503: 2}...} .. !! processed by numpydoc !! .. py:function:: read_basic_defect_file(det, def_type, def_diag, def_tag='def-HEAD') Read defect files stored on SFTP. Simply returns lines === Arguments === - det : detector name - [string] - Ex: "D0ARCA021", "D0ORCA018"... - defect_type - defect_diag - def_tag : defect tag - [string] === Output === - Array of lines .. !! processed by numpydoc !!