km3dq_common.lw_db_library ========================== .. py:module:: km3dq_common.lw_db_library Functions --------- .. autoapisummary:: km3dq_common.lw_db_library.check_defect_diag_byte km3dq_common.lw_db_library.decode_defect_diag_byte km3dq_common.lw_db_library.decode_defect_file Module Contents --------------- .. py:function:: check_defect_diag_byte(value, bit_list) .. !! processed by numpydoc !! .. 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 !!