km3dq_common.common_library =========================== .. py:module:: km3dq_common.common_library Functions --------- .. autoapisummary:: km3dq_common.common_library.get_det_id km3dq_common.common_library.get_current_detector km3dq_common.common_library.get_file_paths km3dq_common.common_library.get_run_properties_from_db km3dq_common.common_library.get_run_properties_from_qaqc km3dq_common.common_library.get_run_timerange km3dq_common.common_library.get_last_n_weeks_runs_qaqc km3dq_common.common_library.get_site km3dq_common.common_library.get_active_dus_range km3dq_common.common_library.get_nb_qaqc_variables km3dq_common.common_library.create_ttree_from_qaqc km3dq_common.common_library.compute_veto_qscore km3dq_common.common_library.log_run_range km3dq_common.common_library.read_qaqc_file km3dq_common.common_library.decode_source_byte Module Contents --------------- .. py:function:: get_det_id(det) Returns the det id === Input: - det [string]: D1ORCA024, D0ARCA030... === Outputs: - detector id [integer] .. !! processed by numpydoc !! .. py:function:: get_current_detector(site) Extract the current detector names from the database by checking the highest run number By default, it is retrieved from the KM3NeT DB but in some rare cases (typically at a detector change) it can be forced to a different one by modifying the km3dq_lw_db/Common/current_detector.toml file that is available on sftp. === Input: - site [string]: ARCA / ORCA === Outputs: - detector [string]: D1ORCA024, D0ARCA030... .. !! processed by numpydoc !! .. py:function:: get_file_paths(detector, qaqc_name) For a given detector / detector, returns the path for QAQC files both on sps and sftp === Input: - det [string]: D1ORCA024, D0ARCA030... === Outputs: - detector id [integer] .. !! processed by numpydoc !! .. py:function:: get_run_properties_from_db(det, filt='PHYS', filt_target='Run') Retrieve run properties from the database with the km3db package === Inputs: - det [string]: D1ORCA024, D0ARCA030... - filt [string]: accepted run types (PHYS, COMM...) separated by a space - filt_target [string]: accepted target (run, on...) separated by a space === Outputs: - properties [dict of dict]: all DB content in a single dictionnary with the run numbers as key .. !! processed by numpydoc !! .. py:function:: get_run_properties_from_qaqc(det, dq_tag, origin='qaqc_sftp', startrun=0, endrun=1000000000.0) For a given detector, returns the run numbers, their lengths, time counter... as retrieved from the QAQC file === Inputs: - det [string]: D1ORCA024, D0ARCA030... - dq_tag [DQ tag]: as configured in config_library - origin [string]: "qaqc_sftp" or "qaqc_sps" - startrun [integer]: first run - endrun [integer]: last run === Outputs: - run properties: TOBEDETAILED - error: should be empty .. !! processed by numpydoc !! .. py:function:: get_run_timerange(det, filt='PHYS') Retrieve the run start/stop by combining db and QAQC quantities to get the most accurate timing. If QAQC data exist (normally for all PHYS runs), use them, otherwise use the DB ones So far used only in km3net_lw_db_interface === Inputs: - det: string like (e.g: D0ARCA030, D1ORCA024...) - filt: string containing the accepted run type (PHYS, COMM...) separated by a space === Outputs: - dictionary with run as key and a list of [run_start, run_stop, source, runtype] with source = 0 (QAQC) or 1 (DB only) .. !! processed by numpydoc !! .. py:function:: get_last_n_weeks_runs_qaqc(det, nweeks=2) Extract the all runs acquired in the last nweeks of running .. !! processed by numpydoc !! .. py:function:: get_site(det) Returns the site (ORCA or ARCA) === Inputs: - det [string]: D1ORCA024, D0ARCA030... === Ouputs: - site [string]: ARCA/ORCA .. !! processed by numpydoc !! .. py:function:: get_active_dus_range(det) Retrieve the range of active DUs To be improved with database information === Inputs: - det [string]: D1ORCA024, D0ARCA030... === Ouputs: - site [string]: ARCA/ORCA .. !! processed by numpydoc !! .. py:function:: get_nb_qaqc_variables(qaqc_vers) Retrieve the number of variables in the QAQC file === Inputs - qaqc_vers [string]: "v16.0.3", "v17.3.2", "V19.2.0"... === Output === - Number of QAQC variables [integer] .. !! processed by numpydoc !! .. py:function:: create_ttree_from_qaqc(det, var_to_fill, source, tag, append_veto_qsco=False) Create a ttree from qaqc sftp file and defect variables stored on git It includes some advanced check about the QAQC file integrity. === Inputs - det : detector name - [string] - Ex: "D0ARCA021", "D0ORCA018"... - var_to_fill : QAQC variables or defect to fill - [array of string] - Ex: ['run', 'timestampdiff', 'def_operation', 'def_oos'] Obsolete - To be removed at some point - source : QAQC source, a priori "qaqc_sftp" - [string] - tag : data-quality tag (not its name) as created by configure_dataquality_tag - append_veto_qsco: append the veto and Qscore - [boolean] === Outputs - TTree - Error log .. !! processed by numpydoc !! .. py:function:: compute_veto_qscore(var_prop, var_val) Computes the veto/Q-score for a detector/tag using a QAQC source. .. !! processed by numpydoc !! .. py:function:: log_run_range(det, run_0, run_1, log_file) Write the run range and run list on disk .. !! processed by numpydoc !! .. py:function:: read_qaqc_file(det, source, qaqc_name, run_range) sftp QAQC file reading === Arguments === - det : detector name - [string] - Ex: "D0ARCA021", "D0ORCA018"... - source : QAQC source, a priori "qaqc_sftp" - [string] - qaqc_name : - run_range : string as defined in DQ tag "[min_run]-[max_run]" (inclusive) === Output === - TTree - Error log .. !! processed by numpydoc !! .. py:function:: decode_source_byte(value, v_prop) Decode the source of degradation stored in the TTree NB: the source is either a QAQC variable either a defect type (("daq", "operation"...) .. !! processed by numpydoc !!