From 292bc4646b5275a23ae7e3a72739c599e44b9e70 Mon Sep 17 00:00:00 2001 From: "Phares Mike (CSC FI SPS MESLEO)" Date: Wed, 21 May 2025 21:34:30 +0200 Subject: [PATCH] Merged PR 17058: Start sending 10 point thickness runs to InfinityQS Start sending 10 point thickness runs to InfinityQS by copying the logic of the 14 point Related work items: #255371, #255376 --- LSL2/STPROC/METROLOGY_SERVICES.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/LSL2/STPROC/METROLOGY_SERVICES.txt b/LSL2/STPROC/METROLOGY_SERVICES.txt index 52a33b9..43d5adf 100644 --- a/LSL2/STPROC/METROLOGY_SERVICES.txt +++ b/LSL2/STPROC/METROLOGY_SERVICES.txt @@ -1059,6 +1059,10 @@ Service ImportBioRadData(RunData, FileName) objSPC = Logging_Services('NewLog', LogPath, OConv(Datetime(), 'DT_^1_HS_'):'_Thickness_9Points.txt', CRLF$, Comma$, '', '', False$, True$) NotesLog = Logging_Services('NewLog', LogPath2, 'Thickness_9Points.txt', CRLF$, Comma$, '', '', False$, False$) SendToSPC = True$ + Case NumDataPoints EQ 10 + objSPC = Logging_Services('NewLog', LogPath, OConv(Datetime(), 'DT_^1_HS_'):'_Thickness_10Points.txt', CRLF$, Comma$, '', '', False$, True$) + NotesLog = Logging_Services('NewLog', LogPath2, 'Thickness_10Points.txt', CRLF$, Comma$, '', '', False$, False$) + SendToSPC = True$ Case NumDataPoints EQ 14 objSPC = Logging_Services('NewLog', LogPath, OConv(Datetime(), 'DT_^1_HS_'):'_Thickness_14Points.txt', CRLF$, Comma$, '', '', False$, True$) NotesLog = Logging_Services('NewLog', LogPath2, 'Thickness_14Points.txt', CRLF$, Comma$, '', '', False$, False$)