Sunday, July 23, 2023

Re: [vim9script] How to compare two objects for identity vs equality?

On 2023-07-23, Lifepillar <lifepillar@lifepillar.me> wrote:
> Fine, == is value-based equality. Is there a way to compare for
> identity, that is, so that o1 and o2 are considered two different
> instances?

Aaah, never mind, there are `is` and `isnot`. Time to find a cool place
to avoid brain melting, I guess...

Life.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/u9jrjc%24ivt%241%40ciao.gmane.io.

[vim9script] How to compare two objects for identity vs equality?

The following test passes:

```vim
vim9script

class C
endclass

def Test_ObjectEquality()
var o1 = C.new()
var o2 = C.new()

assert_true(o1 == o2)
enddef

v:errors = []
Test_ObjectEquality()
echo v:errors
```

Fine, == is value-based equality. Is there a way to compare for
identity, that is, so that o1 and o2 are considered two different
instances?

Thanks,
Life.



--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/u9jr7p%2425h%241%40ciao.gmane.io.

Re: Insert non-rectangular selection

On Sa, 22 Jul 2023, Andre Tann wrote:

> Probably a bit late, but I have just found that I never responded to this
> improvement. It does exactly what I need, and it is great to have it
> working.
>
> So thanks Christian & Bram, better late than never :D

No problem :) Please check also out the zy normal mode command.

Best,
Christian
--
Der Mann braucht zum vollkommenen Glück einen zuverlässigen Freund,
die Frau eine zuverlässige Feindin.
-- Tennessee Williams

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZLz%2BmVKTSkGrtKax%40256bit.org.

Saturday, July 22, 2023

Add Job/Async to python run function

I have the long function below that I use to run python and was wondering if any knew how to add jobs to make it non-blocking/async


function! ExecutePython(line1, line2)
    let s:efm  = '%+GTraceback%.%#,'

    " The error message itself starts with a line with 'File' in it. There
    " are a couple of variations, and we need to process a line beginning
    " with whitespace followed by File, the filename in "", a line number,
    " and optional further text. %E here indicates the start of a multi-line
    " error message. The %\C at the end means that a case-sensitive search is
    " required.
    let s:efm .= '%E  File "%f"\, line %l\,%m%\C,'
    let s:efm .= '%E  File "%f"\, line %l%\C,'

    " The possible continutation lines are idenitifed to Vim by %C. We deal
    " with these in order of most to least specific to ensure a proper
    " match. A pointer (^) identifies the column in which the error occurs
    " (but will not be entirely accurate due to indention of Python code).
    let s:efm .= '%C%p^,'

    " Any text, indented by more than two spaces contain useful information.
    " We want this to appear in the quickfix window, hence %+.
    let s:efm .= '%+C    %.%#,'
    let s:efm .= '%+C  %.%#,'

    " The last line (%Z) does not begin with any whitespace. We use a zero
    " width lookahead (\&) to check this. The line contains the error
    " message itself (%m)
    let s:efm .= '%Z%\S%\&%m,'

    " We can ignore any other lines (%-G)
    let s:efm .= '%-G%.%#'

python3 << EOF
""" Code runnning support. """
import json
import sys
from io import StringIO
from re import compile as re

encoding = re(r"#.*coding[:=]\s*([-\w.]+)")


def run_code():
    """ Run python code in current buffer.
    :returns: None
    """
    errors, err = [], ""
    line1, line2 = vim.eval("a:line1"), vim.eval("a:line2")
    lines = __prepare_lines(line1, line2)
    if encoding.match(lines[0]):
        lines.pop(0)
        if encoding.match(lines[0]):
            lines.pop(0)
    elif encoding.match(lines[1]):
        lines.pop(1)

    context = dict(
        __name__="__main__",
        __file__=vim.eval('expand("%:p")'),
        input='',
        raw_input='')

    sys.stdout, stdout_ = StringIO(), sys.stdout
    sys.stderr, stderr_ = StringIO(), sys.stderr

    try:
        code = compile("\n".join(lines) + "\n", vim.current.buffer.name, "exec")
        sys.path.insert(0, vim.eval('getcwd()'))
        exec(code, context)  # noqa
        sys.path.pop(0)

    except SystemExit as e:
        if e.code:
            # A non-false code indicates abnormal termination.
            # A false code will be treated as a
            # successful run, and the error will be hidden from Vim
            vim.command('call Pyerror("%s")' % str("Script exited with code %s" % e.code))
            return vim.command('return')

    except Exception:
        import traceback

        err = traceback.format_exc()

    else:
        err = sys.stderr.getvalue()

    output = sys.stdout.getvalue()
    sys.stdout, sys.stderr = stdout_, stderr_

    errors += [er for er in err.splitlines() if er and "<string>" not in er]
    vim.command('let %s = %s' % ("l:traceback", json.dumps(errors[1:])))
    vim.command('let %s = %s' % ("l:output", json.dumps([s for s in output.splitlines()])))


def __prepare_lines(line1, line2):

    lines = [l.rstrip() for l in vim.current.buffer[int(line1) - 1: int(line2)]]

    indent = 0
    for line in lines:
        if line:
            indent = len(line) - len(line.lstrip())
            break
    if len(lines) == 1:
        lines.append("")
    return [l[indent:] for l in lines]
EOF
    let l:output = []
    let l:lines = []
    let l:traceback = []
    call setqflist([])

    call Wide_message("Code running ...")

    try
        python3 run_code()

        if len(l:output)
            call Tempbuffer_open('__run__')
            call append(line('$'), l:output)
            normal dd
            wincmd p
        else
            call Wide_message("No output.")
        endif

        cexpr ""
        let l:_efm = &efm
        let &efm = s:efm
        cgetexpr(l:traceback)

        " If a range is run (starting other than at line 1), fix the reported
        " error line numbers for the current buffer
        if a:line1 > 1
            let qflist = getqflist()
            for i in qflist
                if i.bufnr == bufnr("")
                    let i.lnum = i.lnum - 1 + a:line1
                endif
            endfor
            call setqflist(qflist)
        endif

        call Quickfix_open(0, g:pymode_quickfix_maxheight, g:pymode_quickfix_maxheight, 0)

        let &efm = l:_efm

    catch /E234/

        echohl Error | echo "Run-time error." | echohl none

    endtry
endfunction

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/b01fd5b7-1a7e-4c38-8048-8a55595a4ce9n%40googlegroups.com.

Re: Insert non-rectangular selection

Hi Christian, all,

On 31.05.21 07:39, Christian Brabandt wrote:
>> /path/subdir ;text
>> /path/longsubdir ;text
>> /path/longlongsubdir;text
>>
>> But this is obviously not what I want. How can I avoid the extra blanks?
> With the latest Vim 8.2.2914 you can now paste using `zp` that will not
> add any padding.

Probably a bit late, but I have just found that I never responded to
this improvement. It does exactly what I need, and it is great to have
it working.

So thanks Christian & Bram, better late than never :D

--
Andre Tann

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/b8830d8f-7f03-c51f-a371-a691afa6c46f%40alphasrv.net.

Friday, July 21, 2023

syntax files: how to prevent embedded syntax from leaking out of a region?

I developed a syntax file for Noweb -- if you're unfamiliar, it's a Literate Programming tool. Noweb source is LaTeX source, but with embedded code blocks. The embedded code blocks are delimited, and I define a syntax region that recognizes the delimiters. Inside a code block, I get highlighting that corresponds to the source code language. Outside, I get LaTeX highlighting.

But I have a problem with Perl highlighting that escapes past the end of a Perl code block. That is, source after the end of the code block is getting formatted as Perl, not as LaTeX.

Not all Perl breaks out -- I can't put my finger on it yet, but specific Perl constructs break out. For example, when I delete an elsif() clause, the problem disappears.

I'm closely following the examples in the Vim documentation. I'm already supplying the "keepend" argument to the syntax region, which is supposed to limit the embedded syntax to the region.

My working theory is that where the Perl syntax highlighting rules use "extend", this is letting the Perl syntax leak out of the region. Here's a quote from the stock perl.vim:
    syn region perlBraces start="{" end="}" transparent extend
The "extend" argument could be the reason the Perl syntax leaks out of the region.

Given this background, the question is, in my syntax file how can I reliably ALWAYS limit embedded language highlighting to the region that contains it, without the chance that the embedded language can break out?

Cheers!
Edward

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/9b5325f7-f81a-4f6f-b938-f16ba163821an%40googlegroups.com.

Thursday, July 20, 2023

Re: [vim9script] On extending interfaces

> Also, if a concrete class has to implement both i1 and i2 explicitly,
> then i2 might as well not subclass i1.

Right, that's the approach I am currently adopting, which is fine
because my interfaces are small.

I may add that the problem with an orthogonal approach such as this:

interface I1
def Foo()
endinterface

interface I2
def Bar()
endinterface

class C implements I1, I2
...
endclass

class D implements I1, I2
...
endclass

is that there is no type for "C or D" or, more generally, for something
that "implements both I1 and I2", e.g.:

def F(X: ???)
X.Foo()
X.Bar()
enddef

where ??? = "anything implementing both I1 and I2". So, my current best
approximation is:

interface I1
def Foo()
endinterface

interface I2 # (Virtually) extends I1
def Foo()
def Bar()
endinterface

class C implements I1, I2
...
endclass

class D implements I1, I2
...
endclass

def F(X: I2)
X.Foo()
X.Bar()

def G(Y: I1)
Y.Foo()

which is perfectly fine (both F() and G() will accept objects of class
C or D), although the repetition in I2 may become a tad inconvenient if
I1 is large. Hence, my proposal.

Life.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/u9b156%24bjn%241%40ciao.gmane.io.

Re: E474 invalid argument with Unicode MATH BOLD characters. help please

On Do, 20 Jul 2023, Lasse Hillerøe Petersen wrote:

> Oh, and shame on me for using the .h example instead of copying one I
> actually had tried verbatim. ".h" works fine. Add an "e" :iab he hello -
> and it gives E474.

There are only certain kinds of Abbreviations allowed. Please read the
help at `:h abbreviation` and check the section about "three types of
abbreviations".

Note: if you place your commands into a buffer, turn on search
highlighting (:set hls) and search for `/\k` Vim will highlight all
keyword characters so you can easily see if you are using an allowed
form of abbreviation.

Best,
Christian
--
Man ist niemals zu schwer für seine Größe, aber man ist oft zu klein
für sein Gewicht.
-- Gert Fröbe

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZLjiQZ5yUVlrk/s4%40256bit.org.

Re: E474 invalid argument with Unicode MATH BOLD characters. help please

Oh, and shame on me for using the .h example instead of copying one I actually had tried verbatim. ".h" works fine. Add an "e" :iab he hello - and it gives E474.

torsdag den 20. juli 2023 kl. 09.20.59 UTC+2 skrev Lasse Hillerøe Petersen:
It turns out I was *completely* wrong in my assumption about the cause of this error. Sorry.
(Probably better error messages could be helpful here, like: stating *which* argument is invalid, *why* it is invalid, and *what* would be valid.)
It is not the Unicode at all, I am very happy to say.

However, for some reason there are some abbreviation "names" that seem to be invalid. ".al" is one. ".wh" seems to be another. I find it impossible to see a pattern, I can appreviate to two or three characters, even four. It seems abbreviations starting with "." or "," can only be two characters total, except I can do this
:iab ... ellipse
and it works fine.
So what can and can *not* be used for naming abbreviations, when, and *why not*?

The problem also occurs with vim --clean.

I am using Vim 8.2 on Devuan (that's what is in Devuan's repos.)
torsdag den 20. juli 2023 kl. 08.44.07 UTC+2 skrev Christian Brabandt:

On Mi, 19 Jul 2023, Lasse Hillerøe Petersen wrote:

> I am trying to add am iabbrev ".h" for 𝐡𝐞𝐥𝐥𝐨.
> I type
> :iabbrev .h 𝐡𝐞𝐥𝐥𝐨
> (Yes, I have a Linux xkb layout so I can type this.)
> I get E474 Invalid argument.
> Other Unicode characters, like æøå or ¬ also don't seem to work.
>
> I have tried setting encoding to utf-8
> :set enc=utf-8
> :set tenc=utf-8
>
> Searching for the error code came up with nothing useful. Where can I find
> doc on what is actually *valid* arguments?

Hm, that should work and certainly does here. Does it work when you use
vim --clean?

What is your vim version please?


Mit freundlichen Grüßen
Christian
--
Wie man sein Kind nicht nennen sollte:
Anna Kasse

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/e647ddaa-67ef-48f6-ac05-e45369676c5bn%40googlegroups.com.

Re: E474 invalid argument with Unicode MATH BOLD characters. help please

It turns out I was *completely* wrong in my assumption about the cause of this error. Sorry.
(Probably better error messages could be helpful here, like: stating *which* argument is invalid, *why* it is invalid, and *what* would be valid.)
It is not the Unicode at all, I am very happy to say.

However, for some reason there are some abbreviation "names" that seem to be invalid. ".al" is one. ".wh" seems to be another. I find it impossible to see a pattern, I can appreviate to two or three characters, even four. It seems abbreviations starting with "." or "," can only be two characters total, except I can do this
:iab ... ellipse
and it works fine.
So what can and can *not* be used for naming abbreviations, when, and *why not*?

The problem also occurs with vim --clean.

I am using Vim 8.2 on Devuan (that's what is in Devuan's repos.)
torsdag den 20. juli 2023 kl. 08.44.07 UTC+2 skrev Christian Brabandt:

On Mi, 19 Jul 2023, Lasse Hillerøe Petersen wrote:

> I am trying to add am iabbrev ".h" for 𝐡𝐞𝐥𝐥𝐨.
> I type
> :iabbrev .h 𝐡𝐞𝐥𝐥𝐨
> (Yes, I have a Linux xkb layout so I can type this.)
> I get E474 Invalid argument.
> Other Unicode characters, like æøå or ¬ also don't seem to work.
>
> I have tried setting encoding to utf-8
> :set enc=utf-8
> :set tenc=utf-8
>
> Searching for the error code came up with nothing useful. Where can I find
> doc on what is actually *valid* arguments?

Hm, that should work and certainly does here. Does it work when you use
vim --clean?

What is your vim version please?


Mit freundlichen Grüßen
Christian
--
Wie man sein Kind nicht nennen sollte:
Anna Kasse

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/0d41fec5-2a03-4d22-adb1-3c07f690a101n%40googlegroups.com.

Wednesday, July 19, 2023

Re: E474 invalid argument with Unicode MATH BOLD characters. help please

On Mi, 19 Jul 2023, Lasse Hillerøe Petersen wrote:

> I am trying to add am iabbrev ".h" for 𝐡𝐞𝐥𝐥𝐨.
> I type
> :iabbrev .h 𝐡𝐞𝐥𝐥𝐨
> (Yes, I have a Linux xkb layout so I can type this.)
> I get E474 Invalid argument.
> Other Unicode characters, like æøå or ¬ also don't seem to work.
>
> I have tried setting encoding to utf-8
> :set enc=utf-8
> :set tenc=utf-8
>
> Searching for the error code came up with nothing useful. Where can I find
> doc on what is actually *valid* arguments?

Hm, that should work and certainly does here. Does it work when you use
vim --clean?

What is your vim version please?


Mit freundlichen Grüßen
Christian
--
Wie man sein Kind nicht nennen sollte:
Anna Kasse

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZLjXrmlP/PdamHM9%40256bit.org.

E474 invalid argument with Unicode MATH BOLD characters. help please

I am trying to add am iabbrev ".h" for 𝐡𝐞𝐥𝐥𝐨.
I type
:iabbrev .h 𝐡𝐞𝐥𝐥𝐨
(Yes, I have a Linux xkb layout so I can type this.)
I get E474 Invalid argument.
Other Unicode characters, like æøå or ¬ also don't seem to work.

I have tried setting encoding to utf-8
:set enc=utf-8
:set tenc=utf-8

Searching for the error code came up with nothing useful. Where can I find doc on what is actually *valid* arguments?

Thank you in advance.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/cd82be36-a5e4-4733-8be7-6f02588b4333n%40googlegroups.com.

Re: [vim9script] On extending interfaces

I find Life's proposed syntax to be more how I would expect it to work where a child interface should be able to just add stuff without having to redeclare inherited methods. Also, if a concrete class has to implement both i1 and i2 explicitly, then i2 might as well not subclass i1.

Salman

On Wed, Jul 19, 2023, 11:53 Lifepillar <lifepillar@lifepillar.me> wrote:
Vim 9 script allows the following definitions, in which I2 extends I1 by
"implementing" it:

    interface I1
      def Foo()
    endinterface

    interface I2 implements I1
      def Foo()
      def Bar()
    endinterface

The above compiles: I don't know whether it is intentional, but it is
pretty cool! Or, it would be if the following code worked:

    def Echo(obj: I1)
      obj.Foo()
    enddef

    class C2 implements I2
      def Foo()
        echo 'C2'
      enddef

      def Bar()
      enddef
    endclass

    const c2 = C2.new()
    Echo(c2)  # ERROR

This results in:

    type mismatch, expected object<I1> but got object<C2>

But C2 does conform to I1! To fix the error, it is necessary to declare
all the interfaces implemented by C2, that is:

    class C2 implements I1, I2
      # etc.

I will mention two other minor issues:

- I2 must declare Foo() again: it would be nice if that definition could
  be inferred.
- "implements" is not a very accurate description: "extends" would make
  more sense, intuitively.

In summary, what I am asking is whether Vim could (or should) support
this syntax:

    interface I1
      def Foo()
    endinterface

    interface I2 extends I1
      def Bar()
    endinterface

with the following implications:

1. any class implementing I2 must implement both Foo() and Bar().
2. any object of a class implementing I2 may be used wherever an object
   with type I1 is expected.

Thanks,
Life.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/u990to%24rvl%241%40ciao.gmane.io.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/CANuxnEf2K5nVDh9SqhsX_eciAX1YWbdj0fNHbkiKxsnSqE2wAg%40mail.gmail.com.

[vim9script] On extending interfaces

Vim 9 script allows the following definitions, in which I2 extends I1 by
"implementing" it:

interface I1
def Foo()
endinterface

interface I2 implements I1
def Foo()
def Bar()
endinterface

The above compiles: I don't know whether it is intentional, but it is
pretty cool! Or, it would be if the following code worked:

def Echo(obj: I1)
obj.Foo()
enddef

class C2 implements I2
def Foo()
echo 'C2'
enddef

def Bar()
enddef
endclass

const c2 = C2.new()
Echo(c2) # ERROR

This results in:

type mismatch, expected object<I1> but got object<C2>

But C2 does conform to I1! To fix the error, it is necessary to declare
all the interfaces implemented by C2, that is:

class C2 implements I1, I2
# etc.

I will mention two other minor issues:

- I2 must declare Foo() again: it would be nice if that definition could
be inferred.
- "implements" is not a very accurate description: "extends" would make
more sense, intuitively.

In summary, what I am asking is whether Vim could (or should) support
this syntax:

interface I1
def Foo()
endinterface

interface I2 extends I1
def Bar()
endinterface

with the following implications:

1. any class implementing I2 must implement both Foo() and Bar().
2. any object of a class implementing I2 may be used wherever an object
with type I1 is expected.

Thanks,
Life.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/u990to%24rvl%241%40ciao.gmane.io.

Monday, July 17, 2023

Re: Improving vim startuptime

On Mo, 17 Jul 2023, Manas wrote:

> Also, David (hyperfine creator ig) found the missing 2s.
> https://github.com/vim/vim/blob/4c0089d696b8d1d5dc40568f25ea5738fa5bbffb/src/main.c#L2802-L2807
>
> Passing `/dev/null` as script file doesn't halt the execution and
> instantly shows the actual startuptime.

You can also use `--not-a-term` IIRC.

Best,
Christian
--
In Rücksicht der Geschlechtsünden scheint auch der offenste Mensch ein
Heuchler zu sein; aber bloß weil er verbirgt, was alle verbergen,
sogar das Erlaubte, und weil jeder weniger sinnlich scheinen muß, als
er ist.
-- Jean Paul

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZLWHP/Z21MnSwPFj%40256bit.org.

Re: Improving vim startuptime

On Mon, Jul 17, 2023 at 05:07:02PM +0200, Dominique Pellé wrote:
> Manas <manas18244@iiitd.ac.in> wrote:
>
> > > > $ time vim -cq
> > > >
> > > > real 0m0.396s
> > > > user 0m0.346s
> > > > sys 0m0.047s
>
> It seems a bit slow.
>
> For me on xubuntu-22.04 (i7-8700K):
> $ time vim -cq
>
> real 0m0.129s
> user 0m0.106s
> sys 0m0.023s
>
> and on macOS-13.4.1 (M1):
> $ time vim -cq
>
> real 0m0.109s
> user 0m0.071s
> sys 0m0.022s
>
That might be due to different versions/features enabled. I am using
pacman's package. I posted my complete version in a previous post.

Also, David (hyperfine creator ig) found the missing 2s.
https://github.com/vim/vim/blob/4c0089d696b8d1d5dc40568f25ea5738fa5bbffb/src/main.c#L2802-L2807

Passing `/dev/null` as script file doesn't halt the execution and
instantly shows the actual startuptime.

```bash
$ hyperfine "vim -N -u NONE -i NONE -X -cq -s /dev/null"
Benchmark 1: vim -N -u NONE -i NONE -X -cq -s /dev/null
Time (mean ± σ): 36.0 ms ± 4.5 ms [User: 23.6 ms, System: 11.8 ms]
Range (min … max): 30.9 ms … 49.7 ms 79 runs
```

--
Manas

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/jklx6exiaiy3gmgsryvmis7c2cgynktyyjixpa5iu7arqhxaec%40egjup4tid22y.

Re: Lambda use

You can do exactly that; so long as the first argument of Padding() is a string.

vim9script

def Padding(s: string)
  echom "  " .. s .. "  "
enddef

# var e = "this" .. ":" .. "that"
# e->Padding()

("this" .. ":" .. "that")->Padding()


You can run this with :so % after you save it somewhere

On Sun, Jul 16, 2023 at 6:24 PM Nicolas <nivaemail@gmail.com> wrote:
Hi,

I got a padding lambda func that is calculating spaces to complete sentence.
The main parameter passed to this lambda is a string.

Is there another way that the following to avoid temp s:string variable ?

            s = k .. ': ' .. dOutData[k].value
            s->Padding()


AS this way for example ?

(k .. ': ' .. dOutData[k].value) -> Padding()   <<--< ??? 


Thank you
Nicolas 
            s = k .. ': ' .. dOutData[k].value
            s->Padding()
## ############## #### ### ######## ####### ## ### ### ### # ############## # ## REPRESENTATION YAML DES ATTENDUS D'APRES LE LOG E10 LMJ # 2022-11-30_LOG # ## ############## #### ### ######## ####### ## ### ### ### # ############## # NV 2023-07-16 20:15:32 ## time unit: seconds --- 2022-11-30: mesurerTraiter_1: timing: # 35 calls. aberration(s). average: 7.2405 max: 10.029 min: 4.452 call_001: timing: start: 09:50:31.389 # 2022-11-30 09:50:31.389 logline:6323 finish: 09:50:35.841 # 2022-11-30 09:50:35.841 logline:6375 duration: api: 0.0 cpp: 4.452 totalcalltime: 4.452 data_precedence: name: Reference # 2022-11-30 09:50:04.050 logline:6263 tableEchangeLecture.numPiquage: 5 # 2022-11-30 09:50:04.050 logline:6263 data_in: TailleBuffer: 8388608 # 2022-11-30 09:50:34.763 logline:6364 camera: 6 # 2022-11-30 09:50:31.451 logline:6337 iTimeout: 30000 # 2022-11-30 09:50:34.372 logline:6363 iTimetout: 30000 # 2022-11-30 09:50:31.451 logline:6341 name: ReferenceCamera # 2022-11-30 09:50:34.763 logline:6364 data_out: call_002: timing: start: 10:06:14.769 # 2022-11-30 10:06:14.769 logline:6623 finish: 10:06:24.798 # 2022-11-30 10:06:24.798 logline:6722 duration: api: 0.0 cpp: 10.029 totalcalltime: 10.029 data_precedence: name: Reference # 2022-11-30 10:05:47.540 logline:6563 tableEchangeLecture.numPiquage: 5 # 2022-11-30 10:05:47.540 logline:6563 data_in: 'position(1,0)': 977.535 # 2022-11-30 10:06:24.798 logline:6719 TailleBuffer: 8388608 # 2022-11-30 10:06:18.112 logline:6664 camera: 6 # 2022-11-30 10:06:14.815 logline:6637 iTimeout: 30000 # 2022-11-30 10:06:17.737 logline:6663 iTimetout: 30000 # 2022-11-30 10:06:14.815 logline:6641 name: ReferenceCamera # 2022-11-30 10:06:18.112 logline:6664 data_out: 'positionTache(0,0)': 1053.56 # 2022-11-30 10:06:24.798 logline:6720 'positionTache(1,0)': 977.535 # 2022-11-30 10:06:24.798 logline:6721 eps2: tolerance: Non Utilise: 0 - 0-0 # 2022-11-30 10:06:24.798 logline:6714 SigmaX: 12.3842 - 0-0 # 2022-11-30 10:06:24.798 logline:6706 SigmaY: 14 - 0-0 # 2022-11-30 10:06:24.798 logline:6708 Offset: 78.7182 - 0-0 # 2022-11-30 10:06:24.798 logline:6702 Amplitude: -81.68 - 0-0 # 2022-11-30 10:06:24.798 logline:6704 Centrey: 977.535 - 0-0 # 2022-11-30 10:06:24.798 logline:6712 Centrex: 1053.56 - 0-0 # 2022-11-30 10:06:24.798 logline:6710 Ecart type: 1.77483 - 0-0 # 2022-11-30 10:06:24.798 logline:6716 mesurerTraiter_6: timing: # 35 calls. aberration(s). average: 0.4976 max: 1.234 min: 0.437 call_001: timing: start: 10:09:27.404 # 2022-11-30 10:09:27.404 logline:6867 finish: 10:09:27.904 # 2022-11-30 10:09:27.904 logline:6918 duration: api: 0.0 cpp: 0.5 totalcalltime: 0.5 data_precedence: name: Reference # 2022-11-30 10:08:55.786 logline:6749 tableEchangeLecture.numPiquage: 285 # 2022-11-30 10:08:55.786 logline:6749 data_in: TailleBuffer: 8388608 # 2022-11-30 10:09:27.857 logline:6892 cm: -4.993e-07 # 2022-11-30 10:09:27.888 logline:6903 entraxe: 1.78465e-05 # 2022-11-30 10:09:27.888 logline:6904 evh: -0.000145194 # 2022-11-30 10:09:27.904 logline:6913 evh0: -0.000145194 # 2022-11-30 10:09:27.904 logline:6912 evv: -0.000110087 # 2022-11-30 10:09:27.904 logline:6911 evv0: -0.000169763 # 2022-11-30 10:09:27.904 logline:6910 functionAck: 1 # 2022-11-30 10:09:27.842 logline:6891 iTimeout: 30000 # 2022-11-30 10:09:27.467 logline:6887 iTimetout: 30000 # 2022-11-30 10:09:27.467 logline:6886 longueurOnde: 1 # 2022-11-30 10:09:27.857 logline:6899 modeRC: 1 # 2022-11-30 10:09:27.857 logline:6900 name: ReferenceCamera # 2022-11-30 10:09:27.857 logline:6892 nbImages: 1 # 2022-11-30 10:09:27.467 logline:6882 phiR0: 3.19101 # 2022-11-30 10:09:27.888 logline:6906 temperatureInstantanée: 28 # 2022-11-30 10:09:27.904 logline:6909 thetaR0: 0.718521 # 2022-11-30 10:09:27.888 logline:6905 data_out: consigneR4_X: 1013.89 # 2022-11-30 10:09:27.904 logline:6915 consigneR4_Y: 956.478 # 2022-11-30 10:09:27.904 logline:6916 consigneR4_Z: 0 # 2022-11-30 10:09:27.904 logline:6917 call_002: timing: start: 10:14:04.675 # 2022-11-30 10:14:04.675 logline:7060 finish: 10:14:05.909 # 2022-11-30 10:14:05.909 logline:7118 duration: api: 0.0 cpp: 1.234 totalcalltime: 1.234 data_precedence: name: Reference # 2022-11-30 10:11:11.414 logline:6955 tableEchangeLecture.numPiquage: 285 # 2022-11-30 10:11:11.414 logline:6955 data_in: TailleBuffer: 8388608 # 2022-11-30 10:14:05.862 logline:7091 cm: -4.993e-07 # 2022-11-30 10:14:05.893 logline:7103 entraxe: 1.78465e-05 # 2022-11-30 10:14:05.893 logline:7104 evh: -0.000145194 # 2022-11-30 10:14:05.909 logline:7113 evh0: -0.000145194 # 2022-11-30 10:14:05.909 logline:7112 evv: -0.000110087 # 2022-11-30 10:14:05.909 logline:7111 evv0: -0.000169763 # 2022-11-30 10:14:05.909 logline:7110 functionAck: 1 # 2022-11-30 10:14:05.878 logline:7095 iTimeout: 30000 # 2022-11-30 10:14:04.737 logline:7080 iTimetout: 30000 # 2022-11-30 10:14:04.737 logline:7079 longueurOnde: 1 # 2022-11-30 10:14:05.878 logline:7099 modeRC: 1 # 2022-11-30 10:14:05.878 logline:7100 name: ReferenceCamera # 2022-11-30 10:14:05.862 logline:7091 nbImages: 1 # 2022-11-30 10:14:04.737 logline:7075 phiR0: 3.19101 # 2022-11-30 10:14:05.893 logline:7106 temperatureInstantanée: 28 # 2022-11-30 10:14:05.909 logline:7109 thetaR0: 0.718521 # 2022-11-30 10:14:05.893 logline:7105 data_out: consigneR4_X: 1013.89 # 2022-11-30 10:14:05.909 logline:7115 consigneR4_Y: 956.478 # 2022-11-30 10:14:05.909 logline:7116 consigneR4_Z: 0 # 2022-11-30 10:14:05.909 logline:7117 call_003: timing: start: 11:15:58.915 # 2022-11-30 11:15:58.915 logline:7703 finish: 11:15:59.477 # 2022-11-30 11:15:59.477 logline:7755 duration: api: 0.0 cpp: 0.562 totalcalltime: 0.562 data_precedence: name: Reference # 2022-11-30 11:15:48.854 logline:7526 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:15:48.854 logline:7526 data_in: TailleBuffer: 8388608 # 2022-11-30 11:15:59.430 logline:7728 cm: -4.993e-07 # 2022-11-30 11:15:59.461 logline:7740 entraxe: 1.78465e-05 # 2022-11-30 11:15:59.461 logline:7741 evh: -0.000145194 # 2022-11-30 11:15:59.477 logline:7750 evh0: -0.000145194 # 2022-11-30 11:15:59.477 logline:7749 evv: -0.000109247 # 2022-11-30 11:15:59.477 logline:7748 evv0: -0.000169763 # 2022-11-30 11:15:59.477 logline:7747 functionAck: 1 # 2022-11-30 11:15:59.461 logline:7738 iTimeout: 30000 # 2022-11-30 11:15:58.962 logline:7723 iTimetout: 30000 # 2022-11-30 11:15:58.962 logline:7722 longueurOnde: 2 # 2022-11-30 11:15:59.446 logline:7735 modeRC: 3 # 2022-11-30 11:15:59.446 logline:7736 name: ReferenceCamera # 2022-11-30 11:15:59.430 logline:7728 nbImages: 1 # 2022-11-30 11:15:58.962 logline:7718 phiR0: 3.03326 # 2022-11-30 11:15:59.461 logline:7743 temperatureInstantanée: 28.1 # 2022-11-30 11:15:59.477 logline:7746 thetaR0: 1.83428 # 2022-11-30 11:15:59.461 logline:7742 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:15:59.477 logline:7752 consigneR4_Y: 962.839 # 2022-11-30 11:15:59.477 logline:7753 consigneR4_Z: 0 # 2022-11-30 11:15:59.477 logline:7754 call_004: timing: start: 11:34:50.173 # 2022-11-30 11:34:50.173 logline:8982 finish: 11:34:50.642 # 2022-11-30 11:34:50.642 logline:9033 duration: api: 0.0 cpp: 0.469 totalcalltime: 0.469 data_precedence: name: Reference # 2022-11-30 11:34:40.097 logline:8804 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:34:40.097 logline:8804 data_in: TailleBuffer: 8388608 # 2022-11-30 11:34:50.595 logline:9006 cm: -4.993e-07 # 2022-11-30 11:34:50.626 logline:9018 entraxe: 1.78465e-05 # 2022-11-30 11:34:50.626 logline:9019 evh: -0.000145194 # 2022-11-30 11:34:50.642 logline:9028 evh0: -0.000145194 # 2022-11-30 11:34:50.642 logline:9027 evv: -0.000109247 # 2022-11-30 11:34:50.642 logline:9026 evv0: -0.000169763 # 2022-11-30 11:34:50.642 logline:9025 functionAck: 1 # 2022-11-30 11:34:50.610 logline:9010 iTimeout: 30000 # 2022-11-30 11:34:50.235 logline:9002 iTimetout: 30000 # 2022-11-30 11:34:50.235 logline:9001 longueurOnde: 2 # 2022-11-30 11:34:50.610 logline:9014 modeRC: 3 # 2022-11-30 11:34:50.610 logline:9015 name: ReferenceCamera # 2022-11-30 11:34:50.595 logline:9006 nbImages: 1 # 2022-11-30 11:34:50.235 logline:8997 phiR0: 3.03326 # 2022-11-30 11:34:50.626 logline:9021 temperatureInstantanée: 28.1 # 2022-11-30 11:34:50.642 logline:9024 thetaR0: 1.83428 # 2022-11-30 11:34:50.626 logline:9020 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:34:50.642 logline:9030 consigneR4_Y: 962.839 # 2022-11-30 11:34:50.642 logline:9031 consigneR4_Z: 0 # 2022-11-30 11:34:50.642 logline:9032 call_005: timing: start: 11:37:25.818 # 2022-11-30 11:37:25.818 logline:9318 finish: 11:37:26.380 # 2022-11-30 11:37:26.380 logline:9370 duration: api: 0.0 cpp: 0.562 totalcalltime: 0.562 data_precedence: name: Reference # 2022-11-30 11:37:21.537 logline:9193 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:37:21.537 logline:9193 data_in: TailleBuffer: 8388608 # 2022-11-30 11:37:26.318 logline:9343 cm: -4.993e-07 # 2022-11-30 11:37:26.349 logline:9354 entraxe: 1.78465e-05 # 2022-11-30 11:37:26.349 logline:9355 evh: -0.000145194 # 2022-11-30 11:37:26.364 logline:9365 evh0: -0.000145194 # 2022-11-30 11:37:26.364 logline:9364 evv: -0.000109247 # 2022-11-30 11:37:26.364 logline:9363 evv0: -0.000169763 # 2022-11-30 11:37:26.364 logline:9362 functionAck: 1 # 2022-11-30 11:37:26.364 logline:9359 iTimeout: 30000 # 2022-11-30 11:37:25.864 logline:9338 iTimetout: 30000 # 2022-11-30 11:37:25.864 logline:9337 longueurOnde: 2 # 2022-11-30 11:37:26.333 logline:9350 modeRC: 3 # 2022-11-30 11:37:26.333 logline:9351 name: ReferenceCamera # 2022-11-30 11:37:26.318 logline:9343 nbImages: 1 # 2022-11-30 11:37:25.864 logline:9333 phiR0: 3.03326 # 2022-11-30 11:37:26.349 logline:9357 temperatureInstantanée: 28.1 # 2022-11-30 11:37:26.364 logline:9361 thetaR0: 1.83428 # 2022-11-30 11:37:26.349 logline:9356 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:37:26.364 logline:9367 consigneR4_Y: 962.839 # 2022-11-30 11:37:26.364 logline:9368 consigneR4_Z: 0 # 2022-11-30 11:37:26.364 logline:9369 call_006: timing: start: 11:40:34.042 # 2022-11-30 11:40:34.042 logline:9642 finish: 11:40:34.573 # 2022-11-30 11:40:34.573 logline:9693 duration: api: 0.0 cpp: 0.531 totalcalltime: 0.531 data_precedence: name: Reference # 2022-11-30 11:40:29.340 logline:9514 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:40:29.340 logline:9514 data_in: TailleBuffer: 8388608 # 2022-11-30 11:40:34.526 logline:9667 cm: -4.993e-07 # 2022-11-30 11:40:34.542 logline:9678 entraxe: 1.78465e-05 # 2022-11-30 11:40:34.542 logline:9679 evh: -0.000145194 # 2022-11-30 11:40:34.558 logline:9688 evh0: -0.000145194 # 2022-11-30 11:40:34.558 logline:9687 evv: -0.000109247 # 2022-11-30 11:40:34.558 logline:9686 evv0: -0.000169763 # 2022-11-30 11:40:34.558 logline:9685 functionAck: 1 # 2022-11-30 11:40:34.480 logline:9666 iTimeout: 30000 # 2022-11-30 11:40:34.089 logline:9662 iTimetout: 30000 # 2022-11-30 11:40:34.089 logline:9661 longueurOnde: 2 # 2022-11-30 11:40:34.526 logline:9674 modeRC: 3 # 2022-11-30 11:40:34.526 logline:9675 name: ReferenceCamera # 2022-11-30 11:40:34.526 logline:9667 nbImages: 1 # 2022-11-30 11:40:34.089 logline:9657 phiR0: 3.03326 # 2022-11-30 11:40:34.542 logline:9681 temperatureInstantanée: 28.1 # 2022-11-30 11:40:34.558 logline:9684 thetaR0: 1.83428 # 2022-11-30 11:40:34.542 logline:9680 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:40:34.558 logline:9690 consigneR4_Y: 962.839 # 2022-11-30 11:40:34.558 logline:9691 consigneR4_Z: 0 # 2022-11-30 11:40:34.558 logline:9692 call_007: timing: start: 11:43:47.969 # 2022-11-30 11:43:47.969 logline:10235 finish: 11:43:48.484 # 2022-11-30 11:43:48.484 logline:10286 duration: api: 0.0 cpp: 0.515 totalcalltime: 0.515 data_precedence: name: Reference # 2022-11-30 11:43:41.189 logline:10087 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:43:41.189 logline:10087 data_in: TailleBuffer: 8388608 # 2022-11-30 11:43:48.437 logline:10260 cm: -4.993e-07 # 2022-11-30 11:43:48.468 logline:10271 entraxe: 1.78465e-05 # 2022-11-30 11:43:48.468 logline:10272 evh: -0.000145194 # 2022-11-30 11:43:48.484 logline:10281 evh0: -0.000145194 # 2022-11-30 11:43:48.484 logline:10280 evv: -0.000109247 # 2022-11-30 11:43:48.484 logline:10279 evv0: -0.000169763 # 2022-11-30 11:43:48.484 logline:10278 functionAck: 1 # 2022-11-30 11:43:48.406 logline:10259 iTimeout: 30000 # 2022-11-30 11:43:48.015 logline:10255 iTimetout: 30000 # 2022-11-30 11:43:48.015 logline:10254 longueurOnde: 2 # 2022-11-30 11:43:48.453 logline:10267 modeRC: 3 # 2022-11-30 11:43:48.453 logline:10268 name: ReferenceCamera # 2022-11-30 11:43:48.437 logline:10260 nbImages: 1 # 2022-11-30 11:43:48.015 logline:10250 phiR0: 3.03326 # 2022-11-30 11:43:48.468 logline:10274 temperatureInstantanée: 28.1 # 2022-11-30 11:43:48.484 logline:10277 thetaR0: 1.83428 # 2022-11-30 11:43:48.468 logline:10273 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:43:48.484 logline:10283 consigneR4_Y: 962.839 # 2022-11-30 11:43:48.484 logline:10284 consigneR4_Z: 0 # 2022-11-30 11:43:48.484 logline:10285 call_008: timing: start: 11:49:33.721 # 2022-11-30 11:49:33.721 logline:11050 finish: 11:49:34.283 # 2022-11-30 11:49:34.283 logline:11102 duration: api: 0.0 cpp: 0.562 totalcalltime: 0.562 data_precedence: name: Reference # 2022-11-30 11:49:26.613 logline:10900 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:49:26.613 logline:10900 data_in: TailleBuffer: 8388608 # 2022-11-30 11:49:34.221 logline:11075 cm: -4.993e-07 # 2022-11-30 11:49:34.252 logline:11086 entraxe: 1.78465e-05 # 2022-11-30 11:49:34.252 logline:11087 evh: -0.000145194 # 2022-11-30 11:49:34.268 logline:11097 evh0: -0.000145194 # 2022-11-30 11:49:34.268 logline:11096 evv: -0.000109247 # 2022-11-30 11:49:34.268 logline:11095 evv0: -0.000169763 # 2022-11-30 11:49:34.268 logline:11094 functionAck: 1 # 2022-11-30 11:49:34.268 logline:11091 iTimeout: 30000 # 2022-11-30 11:49:33.784 logline:11070 iTimetout: 30000 # 2022-11-30 11:49:33.784 logline:11069 longueurOnde: 2 # 2022-11-30 11:49:34.237 logline:11082 modeRC: 3 # 2022-11-30 11:49:34.237 logline:11083 name: ReferenceCamera # 2022-11-30 11:49:34.221 logline:11075 nbImages: 1 # 2022-11-30 11:49:33.784 logline:11065 phiR0: 3.03326 # 2022-11-30 11:49:34.252 logline:11089 temperatureInstantanée: 28.1 # 2022-11-30 11:49:34.268 logline:11093 thetaR0: 1.83428 # 2022-11-30 11:49:34.252 logline:11088 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:49:34.268 logline:11099 consigneR4_Y: 962.839 # 2022-11-30 11:49:34.268 logline:11100 consigneR4_Z: 0 # 2022-11-30 11:49:34.268 logline:11101 call_009: timing: start: 11:54:46.215 # 2022-11-30 11:54:46.215 logline:11791 finish: 11:54:46.731 # 2022-11-30 11:54:46.731 logline:11842 duration: api: 0.0 cpp: 0.516 totalcalltime: 0.516 data_precedence: name: Reference # 2022-11-30 11:54:41.950 logline:11667 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:54:41.950 logline:11667 data_in: TailleBuffer: 8388608 # 2022-11-30 11:54:46.684 logline:11816 cm: -4.993e-07 # 2022-11-30 11:54:46.715 logline:11827 entraxe: 1.78465e-05 # 2022-11-30 11:54:46.715 logline:11828 evh: -0.000145194 # 2022-11-30 11:54:46.731 logline:11837 evh0: -0.000145194 # 2022-11-30 11:54:46.731 logline:11836 evv: -0.000109247 # 2022-11-30 11:54:46.731 logline:11835 evv0: -0.000169763 # 2022-11-30 11:54:46.731 logline:11834 functionAck: 1 # 2022-11-30 11:54:46.653 logline:11815 iTimeout: 30000 # 2022-11-30 11:54:46.278 logline:11811 iTimetout: 30000 # 2022-11-30 11:54:46.278 logline:11810 longueurOnde: 2 # 2022-11-30 11:54:46.684 logline:11823 modeRC: 3 # 2022-11-30 11:54:46.684 logline:11824 name: ReferenceCamera # 2022-11-30 11:54:46.684 logline:11816 nbImages: 1 # 2022-11-30 11:54:46.278 logline:11806 phiR0: 3.03326 # 2022-11-30 11:54:46.715 logline:11830 temperatureInstantanée: 28.1 # 2022-11-30 11:54:46.731 logline:11833 thetaR0: 1.83428 # 2022-11-30 11:54:46.715 logline:11829 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:54:46.731 logline:11839 consigneR4_Y: 962.839 # 2022-11-30 11:54:46.731 logline:11840 consigneR4_Z: 0 # 2022-11-30 11:54:46.731 logline:11841 call_010: timing: start: 11:56:17.883 # 2022-11-30 11:56:17.883 logline:12207 finish: 11:56:18.398 # 2022-11-30 11:56:18.398 logline:12258 duration: api: 0.0 cpp: 0.515 totalcalltime: 0.515 data_precedence: name: Reference # 2022-11-30 11:56:13.055 logline:12078 tableEchangeLecture.numPiquage: 721 # 2022-11-30 11:56:13.055 logline:12078 data_in: TailleBuffer: 8388608 # 2022-11-30 11:56:18.351 logline:12232 cm: -4.993e-07 # 2022-11-30 11:56:18.382 logline:12243 entraxe: 1.78465e-05 # 2022-11-30 11:56:18.382 logline:12244 evh: -0.000145194 # 2022-11-30 11:56:18.398 logline:12253 evh0: -0.000145194 # 2022-11-30 11:56:18.398 logline:12252 evv: -0.000109247 # 2022-11-30 11:56:18.398 logline:12251 evv0: -0.000169763 # 2022-11-30 11:56:18.398 logline:12250 functionAck: 1 # 2022-11-30 11:56:18.320 logline:12231 iTimeout: 30000 # 2022-11-30 11:56:17.945 logline:12227 iTimetout: 30000 # 2022-11-30 11:56:17.945 logline:12226 longueurOnde: 2 # 2022-11-30 11:56:18.367 logline:12239 modeRC: 3 # 2022-11-30 11:56:18.367 logline:12240 name: ReferenceCamera # 2022-11-30 11:56:18.351 logline:12232 nbImages: 1 # 2022-11-30 11:56:17.945 logline:12222 phiR0: 3.03326 # 2022-11-30 11:56:18.382 logline:12246 temperatureInstantanée: 28.1 # 2022-11-30 11:56:18.398 logline:12249 thetaR0: 1.83428 # 2022-11-30 11:56:18.382 logline:12245 data_out: consigneR4_X: 1040.47 # 2022-11-30 11:56:18.398 logline:12255 consigneR4_Y: 962.839 # 2022-11-30 11:56:18.398 logline:12256 consigneR4_Z: 0 # 2022-11-30 11:56:18.398 logline:12257 call_011: timing: start: 12:04:37.549 # 2022-11-30 12:04:37.549 logline:12960 finish: 12:04:38.065 # 2022-11-30 12:04:38.065 logline:13011 duration: api: 0.0 cpp: 0.516 totalcalltime: 0.516 data_precedence: name: Reference # 2022-11-30 12:04:27.051 logline:12779 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:04:27.051 logline:12779 data_in: TailleBuffer: 8388608 # 2022-11-30 12:04:38.002 logline:12985 cm: -4.993e-07 # 2022-11-30 12:04:38.033 logline:12996 entraxe: 1.78465e-05 # 2022-11-30 12:04:38.033 logline:12997 evh: -0.000145194 # 2022-11-30 12:04:38.049 logline:13006 evh0: -0.000145194 # 2022-11-30 12:04:38.049 logline:13005 evv: -0.000109247 # 2022-11-30 12:04:38.049 logline:13004 evv0: -0.000169763 # 2022-11-30 12:04:38.049 logline:13003 functionAck: 1 # 2022-11-30 12:04:37.986 logline:12984 iTimeout: 30000 # 2022-11-30 12:04:37.612 logline:12980 iTimetout: 30000 # 2022-11-30 12:04:37.612 logline:12979 longueurOnde: 2 # 2022-11-30 12:04:38.018 logline:12992 modeRC: 3 # 2022-11-30 12:04:38.018 logline:12993 name: ReferenceCamera # 2022-11-30 12:04:38.002 logline:12985 nbImages: 1 # 2022-11-30 12:04:37.612 logline:12975 phiR0: 3.03326 # 2022-11-30 12:04:38.033 logline:12999 temperatureInstantanée: 28.1 # 2022-11-30 12:04:38.049 logline:13002 thetaR0: 1.83428 # 2022-11-30 12:04:38.033 logline:12998 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:04:38.049 logline:13008 consigneR4_Y: 962.839 # 2022-11-30 12:04:38.049 logline:13009 consigneR4_Z: 0 # 2022-11-30 12:04:38.049 logline:13010 call_012: timing: start: 12:06:02.983 # 2022-11-30 12:06:02.983 logline:13386 finish: 12:06:03.514 # 2022-11-30 12:06:03.514 logline:13437 duration: api: 0.0 cpp: 0.531 totalcalltime: 0.531 data_precedence: name: Reference # 2022-11-30 12:05:56.204 logline:13235 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:05:56.204 logline:13235 data_in: TailleBuffer: 8388608 # 2022-11-30 12:06:03.468 logline:13411 cm: -4.993e-07 # 2022-11-30 12:06:03.483 logline:13422 entraxe: 1.78465e-05 # 2022-11-30 12:06:03.483 logline:13423 evh: -0.000145194 # 2022-11-30 12:06:03.514 logline:13432 evh0: -0.000145194 # 2022-11-30 12:06:03.514 logline:13431 evv: -0.000109247 # 2022-11-30 12:06:03.514 logline:13430 evv0: -0.000169763 # 2022-11-30 12:06:03.514 logline:13429 functionAck: 1 # 2022-11-30 12:06:03.421 logline:13410 iTimeout: 30000 # 2022-11-30 12:06:03.030 logline:13406 iTimetout: 30000 # 2022-11-30 12:06:03.030 logline:13405 longueurOnde: 2 # 2022-11-30 12:06:03.468 logline:13418 modeRC: 3 # 2022-11-30 12:06:03.468 logline:13419 name: ReferenceCamera # 2022-11-30 12:06:03.468 logline:13411 nbImages: 1 # 2022-11-30 12:06:03.030 logline:13401 phiR0: 3.03326 # 2022-11-30 12:06:03.483 logline:13425 temperatureInstantanée: 28.1 # 2022-11-30 12:06:03.514 logline:13428 thetaR0: 1.83428 # 2022-11-30 12:06:03.483 logline:13424 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:06:03.514 logline:13434 consigneR4_Y: 962.839 # 2022-11-30 12:06:03.514 logline:13435 consigneR4_Z: 0 # 2022-11-30 12:06:03.514 logline:13436 call_013: timing: start: 12:07:28.402 # 2022-11-30 12:07:28.402 logline:13824 finish: 12:07:28.964 # 2022-11-30 12:07:28.964 logline:13876 duration: api: 0.0 cpp: 0.562 totalcalltime: 0.562 data_precedence: name: Reference # 2022-11-30 12:07:21.294 logline:13674 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:07:21.294 logline:13674 data_in: TailleBuffer: 8388608 # 2022-11-30 12:07:28.918 logline:13849 cm: -4.993e-07 # 2022-11-30 12:07:28.949 logline:13860 entraxe: 1.78465e-05 # 2022-11-30 12:07:28.949 logline:13861 evh: -0.000145194 # 2022-11-30 12:07:28.964 logline:13871 evh0: -0.000145194 # 2022-11-30 12:07:28.964 logline:13870 evv: -0.000109247 # 2022-11-30 12:07:28.964 logline:13869 evv0: -0.000169763 # 2022-11-30 12:07:28.964 logline:13868 functionAck: 1 # 2022-11-30 12:07:28.949 logline:13862 iTimeout: 30000 # 2022-11-30 12:07:28.449 logline:13844 iTimetout: 30000 # 2022-11-30 12:07:28.449 logline:13843 longueurOnde: 2 # 2022-11-30 12:07:28.918 logline:13856 modeRC: 3 # 2022-11-30 12:07:28.918 logline:13857 name: ReferenceCamera # 2022-11-30 12:07:28.918 logline:13849 nbImages: 1 # 2022-11-30 12:07:28.449 logline:13839 phiR0: 3.03326 # 2022-11-30 12:07:28.949 logline:13864 temperatureInstantanée: 28.1 # 2022-11-30 12:07:28.964 logline:13867 thetaR0: 1.83428 # 2022-11-30 12:07:28.949 logline:13863 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:07:28.964 logline:13873 consigneR4_Y: 962.839 # 2022-11-30 12:07:28.964 logline:13874 consigneR4_Z: 0 # 2022-11-30 12:07:28.964 logline:13875 call_014: timing: start: 12:08:51.431 # 2022-11-30 12:08:51.431 logline:14254 finish: 12:08:51.931 # 2022-11-30 12:08:51.931 logline:14305 duration: api: 0.0 cpp: 0.5 totalcalltime: 0.5 data_precedence: name: Reference # 2022-11-30 12:08:44.760 logline:14106 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:08:44.760 logline:14106 data_in: TailleBuffer: 8388608 # 2022-11-30 12:08:51.884 logline:14279 cm: -4.993e-07 # 2022-11-30 12:08:51.899 logline:14290 entraxe: 1.78465e-05 # 2022-11-30 12:08:51.899 logline:14291 evh: -0.000145194 # 2022-11-30 12:08:51.931 logline:14300 evh0: -0.000145194 # 2022-11-30 12:08:51.931 logline:14299 evv: -0.000109247 # 2022-11-30 12:08:51.931 logline:14298 evv0: -0.000169763 # 2022-11-30 12:08:51.931 logline:14297 functionAck: 1 # 2022-11-30 12:08:51.868 logline:14278 iTimeout: 30000 # 2022-11-30 12:08:51.477 logline:14274 iTimetout: 30000 # 2022-11-30 12:08:51.477 logline:14273 longueurOnde: 2 # 2022-11-30 12:08:51.884 logline:14286 modeRC: 3 # 2022-11-30 12:08:51.884 logline:14287 name: ReferenceCamera # 2022-11-30 12:08:51.884 logline:14279 nbImages: 1 # 2022-11-30 12:08:51.477 logline:14269 phiR0: 3.03326 # 2022-11-30 12:08:51.915 logline:14293 temperatureInstantanée: 28.1 # 2022-11-30 12:08:51.931 logline:14296 thetaR0: 1.83428 # 2022-11-30 12:08:51.915 logline:14292 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:08:51.931 logline:14302 consigneR4_Y: 962.839 # 2022-11-30 12:08:51.931 logline:14303 consigneR4_Z: 0 # 2022-11-30 12:08:51.931 logline:14304 call_015: timing: start: 12:11:13.962 # 2022-11-30 12:11:13.962 logline:14777 finish: 12:11:14.477 # 2022-11-30 12:11:14.477 logline:14828 duration: api: 0.0 cpp: 0.515 totalcalltime: 0.515 data_precedence: name: Reference # 2022-11-30 12:11:07.073 logline:14629 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:11:07.073 logline:14629 data_in: TailleBuffer: 8388608 # 2022-11-30 12:11:14.430 logline:14802 cm: -4.993e-07 # 2022-11-30 12:11:14.446 logline:14813 entraxe: 1.78465e-05 # 2022-11-30 12:11:14.446 logline:14814 evh: -0.000145194 # 2022-11-30 12:11:14.462 logline:14823 evh0: -0.000145194 # 2022-11-30 12:11:14.462 logline:14822 evv: -0.000109247 # 2022-11-30 12:11:14.462 logline:14821 evv0: -0.000169763 # 2022-11-30 12:11:14.462 logline:14820 functionAck: 1 # 2022-11-30 12:11:14.399 logline:14801 iTimeout: 30000 # 2022-11-30 12:11:14.024 logline:14797 iTimetout: 30000 # 2022-11-30 12:11:14.024 logline:14796 longueurOnde: 2 # 2022-11-30 12:11:14.430 logline:14809 modeRC: 3 # 2022-11-30 12:11:14.430 logline:14810 name: ReferenceCamera # 2022-11-30 12:11:14.430 logline:14802 nbImages: 1 # 2022-11-30 12:11:14.024 logline:14792 phiR0: 3.03326 # 2022-11-30 12:11:14.446 logline:14816 temperatureInstantanée: 28.1 # 2022-11-30 12:11:14.462 logline:14819 thetaR0: 1.83428 # 2022-11-30 12:11:14.446 logline:14815 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:11:14.477 logline:14825 consigneR4_Y: 962.839 # 2022-11-30 12:11:14.477 logline:14826 consigneR4_Z: 0 # 2022-11-30 12:11:14.477 logline:14827 call_016: timing: start: 12:12:44.754 # 2022-11-30 12:12:44.754 logline:15220 finish: 12:12:45.270 # 2022-11-30 12:12:45.270 logline:15271 duration: api: 0.0 cpp: 0.516 totalcalltime: 0.516 data_precedence: name: Reference # 2022-11-30 12:12:37.865 logline:15071 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:12:37.865 logline:15071 data_in: TailleBuffer: 8388608 # 2022-11-30 12:12:45.223 logline:15245 cm: -4.993e-07 # 2022-11-30 12:12:45.254 logline:15256 entraxe: 1.78465e-05 # 2022-11-30 12:12:45.254 logline:15257 evh: -0.000145194 # 2022-11-30 12:12:45.270 logline:15266 evh0: -0.000145194 # 2022-11-30 12:12:45.270 logline:15265 evv: -0.000108407 # 2022-11-30 12:12:45.270 logline:15264 evv0: -0.000169763 # 2022-11-30 12:12:45.270 logline:15263 functionAck: 1 # 2022-11-30 12:12:45.192 logline:15244 iTimeout: 30000 # 2022-11-30 12:12:44.817 logline:15240 iTimetout: 30000 # 2022-11-30 12:12:44.817 logline:15239 longueurOnde: 2 # 2022-11-30 12:12:45.238 logline:15252 modeRC: 3 # 2022-11-30 12:12:45.238 logline:15253 name: ReferenceCamera # 2022-11-30 12:12:45.223 logline:15245 nbImages: 1 # 2022-11-30 12:12:44.817 logline:15235 phiR0: 3.03326 # 2022-11-30 12:12:45.254 logline:15259 temperatureInstantanée: 28.2 # 2022-11-30 12:12:45.270 logline:15262 thetaR0: 1.83428 # 2022-11-30 12:12:45.254 logline:15258 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:12:45.270 logline:15268 consigneR4_Y: 962.952 # 2022-11-30 12:12:45.270 logline:15269 consigneR4_Z: 0 # 2022-11-30 12:12:45.270 logline:15270 call_017: timing: start: 12:16:39.905 # 2022-11-30 12:16:39.905 logline:15887 finish: 12:16:40.358 # 2022-11-30 12:16:40.358 logline:15938 duration: api: 0.0 cpp: 0.453 totalcalltime: 0.453 data_precedence: name: Reference # 2022-11-30 12:16:33.235 logline:15740 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:16:33.235 logline:15740 data_in: TailleBuffer: 8388608 # 2022-11-30 12:16:40.312 logline:15911 cm: -4.993e-07 # 2022-11-30 12:16:40.343 logline:15923 entraxe: 1.78465e-05 # 2022-11-30 12:16:40.343 logline:15924 evh: -0.000145194 # 2022-11-30 12:16:40.358 logline:15933 evh0: -0.000145194 # 2022-11-30 12:16:40.358 logline:15932 evv: -0.000108407 # 2022-11-30 12:16:40.358 logline:15931 evv0: -0.000169763 # 2022-11-30 12:16:40.358 logline:15930 functionAck: 1 # 2022-11-30 12:16:40.343 logline:15922 iTimeout: 30000 # 2022-11-30 12:16:39.968 logline:15907 iTimetout: 30000 # 2022-11-30 12:16:39.968 logline:15906 longueurOnde: 2 # 2022-11-30 12:16:40.327 logline:15918 modeRC: 3 # 2022-11-30 12:16:40.327 logline:15919 name: ReferenceCamera # 2022-11-30 12:16:40.312 logline:15911 nbImages: 1 # 2022-11-30 12:16:39.968 logline:15902 phiR0: 3.03326 # 2022-11-30 12:16:40.343 logline:15926 temperatureInstantanée: 28.2 # 2022-11-30 12:16:40.358 logline:15929 thetaR0: 1.83428 # 2022-11-30 12:16:40.343 logline:15925 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:16:40.358 logline:15935 consigneR4_Y: 962.952 # 2022-11-30 12:16:40.358 logline:15936 consigneR4_Z: 0 # 2022-11-30 12:16:40.358 logline:15937 call_018: timing: start: 12:18:12.354 # 2022-11-30 12:18:12.354 logline:16311 finish: 12:18:12.900 # 2022-11-30 12:18:12.900 logline:16363 duration: api: 0.0 cpp: 0.546 totalcalltime: 0.546 data_precedence: name: Reference # 2022-11-30 12:18:07.870 logline:16184 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:18:07.870 logline:16184 data_in: TailleBuffer: 8388608 # 2022-11-30 12:18:12.854 logline:16336 cm: -4.993e-07 # 2022-11-30 12:18:12.885 logline:16347 entraxe: 1.78465e-05 # 2022-11-30 12:18:12.885 logline:16348 evh: -0.000145194 # 2022-11-30 12:18:12.900 logline:16358 evh0: -0.000145194 # 2022-11-30 12:18:12.900 logline:16357 evv: -0.000108407 # 2022-11-30 12:18:12.900 logline:16356 evv0: -0.000169763 # 2022-11-30 12:18:12.900 logline:16355 functionAck: 1 # 2022-11-30 12:18:12.900 logline:16352 iTimeout: 30000 # 2022-11-30 12:18:12.401 logline:16331 iTimetout: 30000 # 2022-11-30 12:18:12.401 logline:16330 longueurOnde: 2 # 2022-11-30 12:18:12.869 logline:16343 modeRC: 3 # 2022-11-30 12:18:12.869 logline:16344 name: ReferenceCamera # 2022-11-30 12:18:12.854 logline:16336 nbImages: 1 # 2022-11-30 12:18:12.401 logline:16326 phiR0: 3.03326 # 2022-11-30 12:18:12.885 logline:16350 temperatureInstantanée: 28.2 # 2022-11-30 12:18:12.900 logline:16354 thetaR0: 1.83428 # 2022-11-30 12:18:12.885 logline:16349 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:18:12.900 logline:16360 consigneR4_Y: 962.952 # 2022-11-30 12:18:12.900 logline:16361 consigneR4_Z: 0 # 2022-11-30 12:18:12.900 logline:16362 call_019: timing: start: 12:20:32.901 # 2022-11-30 12:20:32.901 logline:16789 finish: 12:20:33.463 # 2022-11-30 12:20:33.463 logline:16841 duration: api: 0.0 cpp: 0.562 totalcalltime: 0.562 data_precedence: name: Reference # 2022-11-30 12:20:28.308 logline:16658 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:20:28.308 logline:16658 data_in: TailleBuffer: 8388608 # 2022-11-30 12:20:33.416 logline:16814 cm: -4.993e-07 # 2022-11-30 12:20:33.432 logline:16825 entraxe: 1.78465e-05 # 2022-11-30 12:20:33.432 logline:16826 evh: -0.000145194 # 2022-11-30 12:20:33.448 logline:16836 evh0: -0.000145194 # 2022-11-30 12:20:33.448 logline:16835 evv: -0.000108407 # 2022-11-30 12:20:33.448 logline:16834 evv0: -0.000169763 # 2022-11-30 12:20:33.448 logline:16833 functionAck: 1 # 2022-11-30 12:20:33.448 logline:16830 iTimeout: 30000 # 2022-11-30 12:20:32.963 logline:16809 iTimetout: 30000 # 2022-11-30 12:20:32.963 logline:16808 longueurOnde: 2 # 2022-11-30 12:20:33.416 logline:16821 modeRC: 3 # 2022-11-30 12:20:33.416 logline:16822 name: ReferenceCamera # 2022-11-30 12:20:33.416 logline:16814 nbImages: 1 # 2022-11-30 12:20:32.963 logline:16804 phiR0: 3.03326 # 2022-11-30 12:20:33.432 logline:16828 temperatureInstantanée: 28.2 # 2022-11-30 12:20:33.448 logline:16832 thetaR0: 1.83428 # 2022-11-30 12:20:33.432 logline:16827 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:20:33.448 logline:16838 consigneR4_Y: 962.952 # 2022-11-30 12:20:33.448 logline:16839 consigneR4_Z: 0 # 2022-11-30 12:20:33.448 logline:16840 call_020: timing: start: 12:22:19.096 # 2022-11-30 12:22:19.096 logline:17251 finish: 12:22:19.565 # 2022-11-30 12:22:19.565 logline:17302 duration: api: 0.0 cpp: 0.469 totalcalltime: 0.469 data_precedence: name: Reference # 2022-11-30 12:22:12.426 logline:17105 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:22:12.426 logline:17105 data_in: TailleBuffer: 8388608 # 2022-11-30 12:22:19.518 logline:17275 cm: -4.993e-07 # 2022-11-30 12:22:19.533 logline:17287 entraxe: 1.78465e-05 # 2022-11-30 12:22:19.533 logline:17288 evh: -0.000145194 # 2022-11-30 12:22:19.549 logline:17297 evh0: -0.000145194 # 2022-11-30 12:22:19.549 logline:17296 evv: -0.000108407 # 2022-11-30 12:22:19.549 logline:17295 evv0: -0.000169763 # 2022-11-30 12:22:19.549 logline:17294 functionAck: 1 # 2022-11-30 12:22:19.533 logline:17285 iTimeout: 30000 # 2022-11-30 12:22:19.159 logline:17271 iTimetout: 30000 # 2022-11-30 12:22:19.159 logline:17270 longueurOnde: 2 # 2022-11-30 12:22:19.518 logline:17282 modeRC: 3 # 2022-11-30 12:22:19.518 logline:17283 name: ReferenceCamera # 2022-11-30 12:22:19.518 logline:17275 nbImages: 1 # 2022-11-30 12:22:19.159 logline:17266 phiR0: 3.03326 # 2022-11-30 12:22:19.533 logline:17290 temperatureInstantanée: 28.2 # 2022-11-30 12:22:19.549 logline:17293 thetaR0: 1.83428 # 2022-11-30 12:22:19.533 logline:17289 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:22:19.549 logline:17299 consigneR4_Y: 962.952 # 2022-11-30 12:22:19.549 logline:17300 consigneR4_Z: 0 # 2022-11-30 12:22:19.549 logline:17301 call_021: timing: start: 12:28:01.677 # 2022-11-30 12:28:01.677 logline:18064 finish: 12:28:02.114 # 2022-11-30 12:28:02.114 logline:18115 duration: api: 0.0 cpp: 0.437 totalcalltime: 0.437 data_precedence: name: Reference # 2022-11-30 12:27:54.444 logline:17913 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:27:54.444 logline:17913 data_in: TailleBuffer: 8388608 # 2022-11-30 12:28:02.067 logline:18088 cm: -4.993e-07 # 2022-11-30 12:28:02.098 logline:18099 entraxe: 1.78465e-05 # 2022-11-30 12:28:02.098 logline:18100 evh: -0.000145194 # 2022-11-30 12:28:02.114 logline:18110 evh0: -0.000145194 # 2022-11-30 12:28:02.114 logline:18109 evv: -0.000108407 # 2022-11-30 12:28:02.114 logline:18108 evv0: -0.000169763 # 2022-11-30 12:28:02.114 logline:18107 functionAck: 1 # 2022-11-30 12:28:02.114 logline:18105 iTimeout: 30000 # 2022-11-30 12:28:01.723 logline:18084 iTimetout: 30000 # 2022-11-30 12:28:01.723 logline:18083 longueurOnde: 2 # 2022-11-30 12:28:02.067 logline:18095 modeRC: 3 # 2022-11-30 12:28:02.083 logline:18096 name: ReferenceCamera # 2022-11-30 12:28:02.067 logline:18088 nbImages: 1 # 2022-11-30 12:28:01.723 logline:18079 phiR0: 3.03326 # 2022-11-30 12:28:02.098 logline:18102 temperatureInstantanée: 28.2 # 2022-11-30 12:28:02.114 logline:18106 thetaR0: 1.83428 # 2022-11-30 12:28:02.098 logline:18101 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:28:02.114 logline:18112 consigneR4_Y: 962.952 # 2022-11-30 12:28:02.114 logline:18113 consigneR4_Z: 0 # 2022-11-30 12:28:02.114 logline:18114 call_022: timing: start: 12:29:34.422 # 2022-11-30 12:29:34.422 logline:18514 finish: 12:29:34.906 # 2022-11-30 12:29:34.906 logline:18565 duration: api: 0.0 cpp: 0.484 totalcalltime: 0.484 data_precedence: name: Reference # 2022-11-30 12:29:27.423 logline:18364 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:29:27.423 logline:18364 data_in: TailleBuffer: 8388608 # 2022-11-30 12:29:34.859 logline:18539 cm: -4.993e-07 # 2022-11-30 12:29:34.875 logline:18550 entraxe: 1.78465e-05 # 2022-11-30 12:29:34.875 logline:18551 evh: -0.000145194 # 2022-11-30 12:29:34.906 logline:18560 evh0: -0.000145194 # 2022-11-30 12:29:34.906 logline:18559 evv: -0.000108407 # 2022-11-30 12:29:34.906 logline:18558 evv0: -0.000169763 # 2022-11-30 12:29:34.906 logline:18557 functionAck: 1 # 2022-11-30 12:29:34.859 logline:18538 iTimeout: 30000 # 2022-11-30 12:29:34.468 logline:18534 iTimetout: 30000 # 2022-11-30 12:29:34.468 logline:18533 longueurOnde: 2 # 2022-11-30 12:29:34.859 logline:18546 modeRC: 3 # 2022-11-30 12:29:34.859 logline:18547 name: ReferenceCamera # 2022-11-30 12:29:34.859 logline:18539 nbImages: 1 # 2022-11-30 12:29:34.468 logline:18529 phiR0: 3.03326 # 2022-11-30 12:29:34.890 logline:18553 temperatureInstantanée: 28.2 # 2022-11-30 12:29:34.906 logline:18556 thetaR0: 1.83428 # 2022-11-30 12:29:34.890 logline:18552 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:29:34.906 logline:18562 consigneR4_Y: 962.952 # 2022-11-30 12:29:34.906 logline:18563 consigneR4_Z: 0 # 2022-11-30 12:29:34.906 logline:18564 call_023: timing: start: 12:32:21.431 # 2022-11-30 12:32:21.431 logline:19071 finish: 12:32:21.947 # 2022-11-30 12:32:21.947 logline:19122 duration: api: 0.0 cpp: 0.516 totalcalltime: 0.516 data_precedence: name: Reference # 2022-11-30 12:32:14.324 logline:18920 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:32:14.324 logline:18920 data_in: TailleBuffer: 8388608 # 2022-11-30 12:32:21.900 logline:19096 cm: -4.993e-07 # 2022-11-30 12:32:21.931 logline:19107 entraxe: 1.78465e-05 # 2022-11-30 12:32:21.931 logline:19108 evh: -0.000145194 # 2022-11-30 12:32:21.947 logline:19117 evh0: -0.000145194 # 2022-11-30 12:32:21.947 logline:19116 evv: -0.000108407 # 2022-11-30 12:32:21.947 logline:19115 evv0: -0.000169763 # 2022-11-30 12:32:21.947 logline:19114 functionAck: 1 # 2022-11-30 12:32:21.869 logline:19095 iTimeout: 30000 # 2022-11-30 12:32:21.478 logline:19091 iTimetout: 30000 # 2022-11-30 12:32:21.478 logline:19090 longueurOnde: 2 # 2022-11-30 12:32:21.916 logline:19103 modeRC: 3 # 2022-11-30 12:32:21.916 logline:19104 name: ReferenceCamera # 2022-11-30 12:32:21.900 logline:19096 nbImages: 1 # 2022-11-30 12:32:21.478 logline:19086 phiR0: 3.03326 # 2022-11-30 12:32:21.931 logline:19110 temperatureInstantanée: 28.2 # 2022-11-30 12:32:21.947 logline:19113 thetaR0: 1.83428 # 2022-11-30 12:32:21.931 logline:19109 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:32:21.947 logline:19119 consigneR4_Y: 962.952 # 2022-11-30 12:32:21.947 logline:19120 consigneR4_Z: 0 # 2022-11-30 12:32:21.947 logline:19121 call_024: timing: start: 12:33:33.072 # 2022-11-30 12:33:33.072 logline:19484 finish: 12:33:33.603 # 2022-11-30 12:33:33.603 logline:19535 duration: api: 0.0 cpp: 0.531 totalcalltime: 0.531 data_precedence: name: Reference # 2022-11-30 12:33:26.401 logline:19337 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:33:26.401 logline:19337 data_in: TailleBuffer: 8388608 # 2022-11-30 12:33:33.556 logline:19509 cm: -4.993e-07 # 2022-11-30 12:33:33.572 logline:19520 entraxe: 1.78465e-05 # 2022-11-30 12:33:33.572 logline:19521 evh: -0.000145194 # 2022-11-30 12:33:33.587 logline:19530 evh0: -0.000145194 # 2022-11-30 12:33:33.587 logline:19529 evv: -0.000108407 # 2022-11-30 12:33:33.587 logline:19528 evv0: -0.000169763 # 2022-11-30 12:33:33.587 logline:19527 functionAck: 1 # 2022-11-30 12:33:33.509 logline:19508 iTimeout: 30000 # 2022-11-30 12:33:33.119 logline:19504 iTimetout: 30000 # 2022-11-30 12:33:33.119 logline:19503 longueurOnde: 2 # 2022-11-30 12:33:33.556 logline:19516 modeRC: 3 # 2022-11-30 12:33:33.556 logline:19517 name: ReferenceCamera # 2022-11-30 12:33:33.556 logline:19509 nbImages: 1 # 2022-11-30 12:33:33.119 logline:19499 phiR0: 3.03326 # 2022-11-30 12:33:33.572 logline:19523 temperatureInstantanée: 28.2 # 2022-11-30 12:33:33.587 logline:19526 thetaR0: 1.83428 # 2022-11-30 12:33:33.572 logline:19522 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:33:33.587 logline:19532 consigneR4_Y: 962.952 # 2022-11-30 12:33:33.587 logline:19533 consigneR4_Z: 0 # 2022-11-30 12:33:33.587 logline:19534 call_025: timing: start: 12:35:04.083 # 2022-11-30 12:35:04.083 logline:19923 finish: 12:35:04.520 # 2022-11-30 12:35:04.520 logline:19974 duration: api: 0.0 cpp: 0.437 totalcalltime: 0.437 data_precedence: name: Reference # 2022-11-30 12:34:57.194 logline:19775 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:34:57.194 logline:19775 data_in: TailleBuffer: 8388608 # 2022-11-30 12:35:04.473 logline:19947 cm: -4.993e-07 # 2022-11-30 12:35:04.505 logline:19958 entraxe: 1.78465e-05 # 2022-11-30 12:35:04.505 logline:19959 evh: -0.000145194 # 2022-11-30 12:35:04.520 logline:19969 evh0: -0.000145194 # 2022-11-30 12:35:04.520 logline:19968 evv: -0.000108407 # 2022-11-30 12:35:04.520 logline:19967 evv0: -0.000169763 # 2022-11-30 12:35:04.520 logline:19966 functionAck: 1 # 2022-11-30 12:35:04.520 logline:19963 iTimeout: 30000 # 2022-11-30 12:35:04.130 logline:19943 iTimetout: 30000 # 2022-11-30 12:35:04.130 logline:19942 longueurOnde: 2 # 2022-11-30 12:35:04.489 logline:19954 modeRC: 3 # 2022-11-30 12:35:04.489 logline:19955 name: ReferenceCamera # 2022-11-30 12:35:04.473 logline:19947 nbImages: 1 # 2022-11-30 12:35:04.130 logline:19938 phiR0: 3.03326 # 2022-11-30 12:35:04.505 logline:19961 temperatureInstantanée: 28.2 # 2022-11-30 12:35:04.520 logline:19965 thetaR0: 1.83428 # 2022-11-30 12:35:04.505 logline:19960 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:35:04.520 logline:19971 consigneR4_Y: 962.952 # 2022-11-30 12:35:04.520 logline:19972 consigneR4_Z: 0 # 2022-11-30 12:35:04.520 logline:19973 call_026: timing: start: 12:40:02.454 # 2022-11-30 12:40:02.454 logline:20679 finish: 12:40:02.923 # 2022-11-30 12:40:02.923 logline:20730 duration: api: 0.0 cpp: 0.469 totalcalltime: 0.469 data_precedence: name: Reference # 2022-11-30 12:39:53.378 logline:20510 tableEchangeLecture.numPiquage: 508 # 2022-11-30 12:39:53.378 logline:20510 data_in: TailleBuffer: 8388608 # 2022-11-30 12:40:02.876 logline:20703 cm: -4.993e-07 # 2022-11-30 12:40:02.907 logline:20715 entraxe: 1.78465e-05 # 2022-11-30 12:40:02.907 logline:20716 evh: -0.000145194 # 2022-11-30 12:40:02.923 logline:20725 evh0: -0.000145194 # 2022-11-30 12:40:02.923 logline:20724 evv: -0.000108407 # 2022-11-30 12:40:02.923 logline:20723 evv0: -0.000169763 # 2022-11-30 12:40:02.923 logline:20722 functionAck: 1 # 2022-11-30 12:40:02.892 logline:20707 iTimeout: 30000 # 2022-11-30 12:40:02.501 logline:20699 iTimetout: 30000 # 2022-11-30 12:40:02.501 logline:20698 longueurOnde: 2 # 2022-11-30 12:40:02.892 logline:20711 modeRC: 3 # 2022-11-30 12:40:02.892 logline:20712 name: ReferenceCamera # 2022-11-30 12:40:02.876 logline:20703 nbImages: 1 # 2022-11-30 12:40:02.501 logline:20694 phiR0: 6.12222 # 2022-11-30 12:40:02.907 logline:20718 temperatureInstantanée: 28.2 # 2022-11-30 12:40:02.923 logline:20721 thetaR0: 1.17892 # 2022-11-30 12:40:02.907 logline:20717 data_out: consigneR4_X: 1039.72 # 2022-11-30 12:40:02.923 logline:20727 consigneR4_Y: 957.697 # 2022-11-30 12:40:02.923 logline:20728 consigneR4_Z: 0 # 2022-11-30 12:40:02.923 logline:20729 call_027: timing: start: 12:40:45.007 # 2022-11-30 12:40:45.007 logline:21029 finish: 12:40:45.460 # 2022-11-30 12:40:45.460 logline:21080 duration: api: 0.0 cpp: 0.453 totalcalltime: 0.453 data_precedence: name: Reference # 2022-11-30 12:40:40.743 logline:20905 tableEchangeLecture.numPiquage: 508 # 2022-11-30 12:40:40.743 logline:20905 data_in: TailleBuffer: 8388608 # 2022-11-30 12:40:45.413 logline:21053 cm: -4.993e-07 # 2022-11-30 12:40:45.445 logline:21065 entraxe: 1.78465e-05 # 2022-11-30 12:40:45.445 logline:21066 evh: -0.000145194 # 2022-11-30 12:40:45.460 logline:21075 evh0: -0.000145194 # 2022-11-30 12:40:45.460 logline:21074 evv: -0.000108407 # 2022-11-30 12:40:45.460 logline:21073 evv0: -0.000169763 # 2022-11-30 12:40:45.460 logline:21072 functionAck: 1 # 2022-11-30 12:40:45.445 logline:21064 iTimeout: 30000 # 2022-11-30 12:40:45.054 logline:21049 iTimetout: 30000 # 2022-11-30 12:40:45.054 logline:21048 longueurOnde: 2 # 2022-11-30 12:40:45.429 logline:21060 modeRC: 3 # 2022-11-30 12:40:45.429 logline:21061 name: ReferenceCamera # 2022-11-30 12:40:45.413 logline:21053 nbImages: 1 # 2022-11-30 12:40:45.054 logline:21044 phiR0: 6.12222 # 2022-11-30 12:40:45.445 logline:21068 temperatureInstantanée: 28.2 # 2022-11-30 12:40:45.460 logline:21071 thetaR0: 1.17892 # 2022-11-30 12:40:45.445 logline:21067 data_out: consigneR4_X: 1039.72 # 2022-11-30 12:40:45.460 logline:21077 consigneR4_Y: 957.697 # 2022-11-30 12:40:45.460 logline:21078 consigneR4_Z: 0 # 2022-11-30 12:40:45.460 logline:21079 call_028: timing: start: 12:41:57.304 # 2022-11-30 12:41:57.304 logline:21409 finish: 12:41:57.850 # 2022-11-30 12:41:57.850 logline:21461 duration: api: 0.0 cpp: 0.546 totalcalltime: 0.546 data_precedence: name: Reference # 2022-11-30 12:41:52.602 logline:21281 tableEchangeLecture.numPiquage: 508 # 2022-11-30 12:41:52.602 logline:21281 data_in: TailleBuffer: 8388608 # 2022-11-30 12:41:57.803 logline:21434 cm: -4.993e-07 # 2022-11-30 12:41:57.835 logline:21445 entraxe: 1.78465e-05 # 2022-11-30 12:41:57.835 logline:21446 evh: -0.000145194 # 2022-11-30 12:41:57.850 logline:21456 evh0: -0.000145194 # 2022-11-30 12:41:57.850 logline:21455 evv: -0.000108407 # 2022-11-30 12:41:57.850 logline:21454 evv0: -0.000169763 # 2022-11-30 12:41:57.850 logline:21453 functionAck: 1 # 2022-11-30 12:41:57.850 logline:21450 iTimeout: 30000 # 2022-11-30 12:41:57.350 logline:21429 iTimetout: 30000 # 2022-11-30 12:41:57.350 logline:21428 longueurOnde: 2 # 2022-11-30 12:41:57.819 logline:21441 modeRC: 3 # 2022-11-30 12:41:57.819 logline:21442 name: ReferenceCamera # 2022-11-30 12:41:57.803 logline:21434 nbImages: 1 # 2022-11-30 12:41:57.350 logline:21424 phiR0: 6.12222 # 2022-11-30 12:41:57.835 logline:21448 temperatureInstantanée: 28.2 # 2022-11-30 12:41:57.850 logline:21452 thetaR0: 1.17892 # 2022-11-30 12:41:57.835 logline:21447 data_out: consigneR4_X: 1039.72 # 2022-11-30 12:41:57.850 logline:21458 consigneR4_Y: 957.697 # 2022-11-30 12:41:57.850 logline:21459 consigneR4_Z: 0 # 2022-11-30 12:41:57.850 logline:21460 call_029: timing: start: 12:43:07.647 # 2022-11-30 12:43:07.647 logline:21802 finish: 12:43:08.132 # 2022-11-30 12:43:08.132 logline:21853 duration: api: 0.0 cpp: 0.485 totalcalltime: 0.485 data_precedence: name: Reference # 2022-11-30 12:43:00.758 logline:21654 tableEchangeLecture.numPiquage: 508 # 2022-11-30 12:43:00.758 logline:21654 data_in: TailleBuffer: 8388608 # 2022-11-30 12:43:08.085 logline:21827 cm: -4.993e-07 # 2022-11-30 12:43:08.116 logline:21838 entraxe: 1.78465e-05 # 2022-11-30 12:43:08.116 logline:21839 evh: -0.000145194 # 2022-11-30 12:43:08.132 logline:21848 evh0: -0.000145194 # 2022-11-30 12:43:08.132 logline:21847 evv: -0.000108407 # 2022-11-30 12:43:08.132 logline:21846 evv0: -0.000169763 # 2022-11-30 12:43:08.132 logline:21845 functionAck: 1 # 2022-11-30 12:43:08.085 logline:21826 iTimeout: 30000 # 2022-11-30 12:43:07.694 logline:21822 iTimetout: 30000 # 2022-11-30 12:43:07.694 logline:21821 longueurOnde: 2 # 2022-11-30 12:43:08.100 logline:21834 modeRC: 3 # 2022-11-30 12:43:08.100 logline:21835 name: ReferenceCamera # 2022-11-30 12:43:08.085 logline:21827 nbImages: 1 # 2022-11-30 12:43:07.694 logline:21817 phiR0: 6.12222 # 2022-11-30 12:43:08.116 logline:21841 temperatureInstantanée: 28.2 # 2022-11-30 12:43:08.132 logline:21844 thetaR0: 1.17892 # 2022-11-30 12:43:08.116 logline:21840 data_out: consigneR4_X: 1039.72 # 2022-11-30 12:43:08.132 logline:21850 consigneR4_Y: 957.697 # 2022-11-30 12:43:08.132 logline:21851 consigneR4_Z: 0 # 2022-11-30 12:43:08.132 logline:21852 call_030: timing: start: 12:47:14.530 # 2022-11-30 12:47:14.530 logline:22468 finish: 12:47:15.030 # 2022-11-30 12:47:15.030 logline:22519 duration: api: 0.0 cpp: 0.5 totalcalltime: 0.5 data_precedence: name: Reference # 2022-11-30 12:47:07.641 logline:22319 tableEchangeLecture.numPiquage: 508 # 2022-11-30 12:47:07.641 logline:22319 data_in: TailleBuffer: 8388608 # 2022-11-30 12:47:14.983 logline:22493 cm: -4.993e-07 # 2022-11-30 12:47:15.014 logline:22504 entraxe: 1.78465e-05 # 2022-11-30 12:47:15.014 logline:22505 evh: -0.000145194 # 2022-11-30 12:47:15.030 logline:22514 evh0: -0.000145194 # 2022-11-30 12:47:15.030 logline:22513 evv: -0.000108407 # 2022-11-30 12:47:15.030 logline:22512 evv0: -0.000169763 # 2022-11-30 12:47:15.030 logline:22511 functionAck: 1 # 2022-11-30 12:47:14.967 logline:22492 iTimeout: 30000 # 2022-11-30 12:47:14.577 logline:22488 iTimetout: 30000 # 2022-11-30 12:47:14.577 logline:22487 longueurOnde: 2 # 2022-11-30 12:47:14.999 logline:22500 modeRC: 3 # 2022-11-30 12:47:14.999 logline:22501 name: ReferenceCamera # 2022-11-30 12:47:14.983 logline:22493 nbImages: 1 # 2022-11-30 12:47:14.577 logline:22483 phiR0: 6.12222 # 2022-11-30 12:47:15.014 logline:22507 temperatureInstantanée: 28.2 # 2022-11-30 12:47:15.030 logline:22510 thetaR0: 1.17892 # 2022-11-30 12:47:15.014 logline:22506 data_out: consigneR4_X: 1039.72 # 2022-11-30 12:47:15.030 logline:22516 consigneR4_Y: 957.697 # 2022-11-30 12:47:15.030 logline:22517 consigneR4_Z: 0 # 2022-11-30 12:47:15.030 logline:22518 call_031: timing: start: 12:48:30.326 # 2022-11-30 12:48:30.326 logline:22887 finish: 12:48:30.779 # 2022-11-30 12:48:30.779 logline:22938 duration: api: 0.0 cpp: 0.453 totalcalltime: 0.453 data_precedence: name: Reference # 2022-11-30 12:48:23.437 logline:22739 tableEchangeLecture.numPiquage: 508 # 2022-11-30 12:48:23.437 logline:22739 data_in: TailleBuffer: 8388608 # 2022-11-30 12:48:30.732 logline:22911 cm: -4.993e-07 # 2022-11-30 12:48:30.763 logline:22923 entraxe: 1.78465e-05 # 2022-11-30 12:48:30.763 logline:22924 evh: -0.000145194 # 2022-11-30 12:48:30.779 logline:22933 evh0: -0.000145194 # 2022-11-30 12:48:30.779 logline:22932 evv: -0.000108407 # 2022-11-30 12:48:30.779 logline:22931 evv0: -0.000169763 # 2022-11-30 12:48:30.779 logline:22930 functionAck: 1 # 2022-11-30 12:48:30.763 logline:22921 iTimeout: 30000 # 2022-11-30 12:48:30.372 logline:22907 iTimetout: 30000 # 2022-11-30 12:48:30.372 logline:22906 longueurOnde: 2 # 2022-11-30 12:48:30.747 logline:22918 modeRC: 3 # 2022-11-30 12:48:30.747 logline:22919 name: ReferenceCamera # 2022-11-30 12:48:30.732 logline:22911 nbImages: 1 # 2022-11-30 12:48:30.372 logline:22902 phiR0: 6.12222 # 2022-11-30 12:48:30.763 logline:22926 temperatureInstantanée: 28.2 # 2022-11-30 12:48:30.779 logline:22929 thetaR0: 1.17892 # 2022-11-30 12:48:30.763 logline:22925 data_out: consigneR4_X: 1039.72 # 2022-11-30 12:48:30.779 logline:22935 consigneR4_Y: 957.697 # 2022-11-30 12:48:30.779 logline:22936 consigneR4_Z: 0 # 2022-11-30 12:48:30.779 logline:22937 call_032: timing: start: 12:51:57.920 # 2022-11-30 12:51:57.920 logline:23387 finish: 12:51:58.389 # 2022-11-30 12:51:58.389 logline:23438 duration: api: 0.0 cpp: 0.469 totalcalltime: 0.469 data_precedence: name: Reference # 2022-11-30 12:51:50.375 logline:23234 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:51:50.375 logline:23234 data_in: TailleBuffer: 8388608 # 2022-11-30 12:51:58.342 logline:23411 cm: -4.993e-07 # 2022-11-30 12:51:58.357 logline:23423 entraxe: 1.78465e-05 # 2022-11-30 12:51:58.357 logline:23424 evh: -0.000145194 # 2022-11-30 12:51:58.389 logline:23433 evh0: -0.000145194 # 2022-11-30 12:51:58.389 logline:23432 evv: -0.000108407 # 2022-11-30 12:51:58.389 logline:23431 evv0: -0.000169763 # 2022-11-30 12:51:58.389 logline:23430 functionAck: 1 # 2022-11-30 12:51:58.357 logline:23421 iTimeout: 30000 # 2022-11-30 12:51:57.967 logline:23407 iTimetout: 30000 # 2022-11-30 12:51:57.967 logline:23406 longueurOnde: 2 # 2022-11-30 12:51:58.342 logline:23418 modeRC: 3 # 2022-11-30 12:51:58.342 logline:23419 name: ReferenceCamera # 2022-11-30 12:51:58.342 logline:23411 nbImages: 1 # 2022-11-30 12:51:57.967 logline:23402 phiR0: 3.03326 # 2022-11-30 12:51:58.357 logline:23426 temperatureInstantanée: 28.2 # 2022-11-30 12:51:58.389 logline:23429 thetaR0: 1.83428 # 2022-11-30 12:51:58.357 logline:23425 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:51:58.389 logline:23435 consigneR4_Y: 962.952 # 2022-11-30 12:51:58.389 logline:23436 consigneR4_Z: 0 # 2022-11-30 12:51:58.389 logline:23437 call_033: timing: start: 12:53:16.121 # 2022-11-30 12:53:16.121 logline:23779 finish: 12:53:16.621 # 2022-11-30 12:53:16.621 logline:23830 duration: api: 0.0 cpp: 0.5 totalcalltime: 0.5 data_precedence: name: Reference # 2022-11-30 12:53:11.638 logline:23653 tableEchangeLecture.numPiquage: 721 # 2022-11-30 12:53:11.638 logline:23653 data_in: TailleBuffer: 8388608 # 2022-11-30 12:53:16.574 logline:23804 cm: -4.993e-07 # 2022-11-30 12:53:16.606 logline:23815 entraxe: 1.78465e-05 # 2022-11-30 12:53:16.606 logline:23816 evh: -0.000145194 # 2022-11-30 12:53:16.621 logline:23825 evh0: -0.000145194 # 2022-11-30 12:53:16.621 logline:23824 evv: -0.000108407 # 2022-11-30 12:53:16.621 logline:23823 evv0: -0.000169763 # 2022-11-30 12:53:16.621 logline:23822 functionAck: 1 # 2022-11-30 12:53:16.559 logline:23803 iTimeout: 30000 # 2022-11-30 12:53:16.184 logline:23799 iTimetout: 30000 # 2022-11-30 12:53:16.184 logline:23798 longueurOnde: 2 # 2022-11-30 12:53:16.590 logline:23811 modeRC: 3 # 2022-11-30 12:53:16.590 logline:23812 name: ReferenceCamera # 2022-11-30 12:53:16.574 logline:23804 nbImages: 1 # 2022-11-30 12:53:16.184 logline:23794 phiR0: 3.03326 # 2022-11-30 12:53:16.606 logline:23818 temperatureInstantanée: 28.2 # 2022-11-30 12:53:16.621 logline:23821 thetaR0: 1.83428 # 2022-11-30 12:53:16.606 logline:23817 data_out: consigneR4_X: 1040.47 # 2022-11-30 12:53:16.621 logline:23827 consigneR4_Y: 962.952 # 2022-11-30 12:53:16.621 logline:23828 consigneR4_Z: 0 # 2022-11-30 12:53:16.621 logline:23829 call_034: timing: start: 18:30:17.080 # 2022-11-30 18:30:17.080 logline:24125 finish: 18:32:06.154 # 2022-11-30 18:32:06.154 logline:24174 duration: api: 0.0 cpp: 109.074 totalcalltime: 109.074 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 18:30:12.925 logline:24050 tableEchangeLecture.numPiquage: 130 # 2022-11-30 18:30:12.925 logline:24050 data_in: TailleBuffer: 8388608 # 2022-11-30 18:32:06.107 logline:24148 camera: 6 # 2022-11-30 18:30:17.127 logline:24142 cm: -4.993e-07 # 2022-11-30 18:32:06.138 logline:24159 entraxe: 1.78465e-05 # 2022-11-30 18:32:06.138 logline:24160 evh: -0.000145194 # 2022-11-30 18:32:06.154 logline:24169 evh0: -0.000145194 # 2022-11-30 18:32:06.154 logline:24168 evv: -0.000107567 # 2022-11-30 18:32:06.154 logline:24167 evv0: -0.000169763 # 2022-11-30 18:32:06.154 logline:24166 iTimeout: 900000 # 2022-11-30 18:30:17.127 logline:24147 iTimetout: 900000 # 2022-11-30 18:30:17.127 logline:24146 longueurOnde: 0 # 2022-11-30 18:32:06.123 logline:24155 modeRC: 3 # 2022-11-30 18:32:06.123 logline:24156 name: ReferenceCamera # 2022-11-30 18:32:06.107 logline:24148 phiR0: 0.0205039 # 2022-11-30 18:32:06.138 logline:24162 temperatureInstantanée: 28.3 # 2022-11-30 18:32:06.154 logline:24165 thetaR0: 2.14829 # 2022-11-30 18:32:06.138 logline:24161 data_out: consigneR4_X: 1033.97 # 2022-11-30 18:32:06.154 logline:24171 consigneR4_Y: 961.84 # 2022-11-30 18:32:06.154 logline:24172 consigneR4_Z: 0 # 2022-11-30 18:32:06.154 logline:24173 call_035: timing: start: 18:38:39.144 # 2022-11-30 18:38:39.144 logline:24289 finish: 18:40:28.171 # 2022-11-30 18:40:28.171 logline:24338 duration: api: 0.0 cpp: 109.027 totalcalltime: 109.027 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 18:38:35.098 logline:24214 tableEchangeLecture.numPiquage: 135 # 2022-11-30 18:38:35.098 logline:24214 data_in: TailleBuffer: 8388608 # 2022-11-30 18:40:28.124 logline:24312 camera: 6 # 2022-11-30 18:38:39.206 logline:24306 cm: -4.993e-07 # 2022-11-30 18:40:28.155 logline:24323 entraxe: 1.78465e-05 # 2022-11-30 18:40:28.155 logline:24324 evh: -0.000145194 # 2022-11-30 18:40:28.171 logline:24333 evh0: -0.000145194 # 2022-11-30 18:40:28.171 logline:24332 evv: -0.000108407 # 2022-11-30 18:40:28.171 logline:24331 evv0: -0.000169763 # 2022-11-30 18:40:28.171 logline:24330 iTimeout: 900000 # 2022-11-30 18:38:39.206 logline:24311 iTimetout: 900000 # 2022-11-30 18:38:39.206 logline:24310 longueurOnde: 0 # 2022-11-30 18:40:28.124 logline:24319 modeRC: 3 # 2022-11-30 18:40:28.124 logline:24320 name: ReferenceCamera # 2022-11-30 18:40:28.124 logline:24312 phiR0: 3.08042 # 2022-11-30 18:40:28.155 logline:24326 temperatureInstantanée: 28.2 # 2022-11-30 18:40:28.171 logline:24329 thetaR0: 2.4272 # 2022-11-30 18:40:28.155 logline:24325 data_out: consigneR4_X: 1033.98 # 2022-11-30 18:40:28.171 logline:24335 consigneR4_Y: 963.521 # 2022-11-30 18:40:28.171 logline:24336 consigneR4_Z: 0 # 2022-11-30 18:40:28.171 logline:24337 call_036: timing: start: 18:48:10.771 # 2022-11-30 18:48:10.771 logline:24453 finish: 18:50:18.185 # 2022-11-30 18:50:18.185 logline:24502 duration: api: 0.0 cpp: 127.414 totalcalltime: 127.414 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 18:48:06.178 logline:24378 tableEchangeLecture.numPiquage: 130 # 2022-11-30 18:48:06.178 logline:24378 data_in: TailleBuffer: 8388608 # 2022-11-30 18:50:18.138 logline:24476 camera: 6 # 2022-11-30 18:48:10.818 logline:24470 cm: -4.993e-07 # 2022-11-30 18:50:18.169 logline:24487 entraxe: 1.78465e-05 # 2022-11-30 18:50:18.169 logline:24488 evh: -0.000145194 # 2022-11-30 18:50:18.185 logline:24497 evh0: -0.000145194 # 2022-11-30 18:50:18.185 logline:24496 evv: -0.000108407 # 2022-11-30 18:50:18.185 logline:24495 evv0: -0.000169763 # 2022-11-30 18:50:18.185 logline:24494 iTimeout: 900000 # 2022-11-30 18:48:10.818 logline:24475 iTimetout: 900000 # 2022-11-30 18:48:10.818 logline:24474 longueurOnde: 0 # 2022-11-30 18:50:18.154 logline:24483 modeRC: 3 # 2022-11-30 18:50:18.154 logline:24484 name: ReferenceCamera # 2022-11-30 18:50:18.138 logline:24476 phiR0: 0.0205039 # 2022-11-30 18:50:18.169 logline:24490 temperatureInstantanée: 28.2 # 2022-11-30 18:50:18.185 logline:24493 thetaR0: 2.14829 # 2022-11-30 18:50:18.169 logline:24489 data_out: consigneR4_X: 1033.97 # 2022-11-30 18:50:18.185 logline:24499 consigneR4_Y: 961.727 # 2022-11-30 18:50:18.185 logline:24500 consigneR4_Z: 0 # 2022-11-30 18:50:18.185 logline:24501 call_037: timing: start: 18:54:54.617 # 2022-11-30 18:54:54.617 logline:24617 finish: 18:57:02.202 # 2022-11-30 18:57:02.202 logline:24666 duration: api: 0.0 cpp: 127.585 totalcalltime: 127.585 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 18:54:50.571 logline:24542 tableEchangeLecture.numPiquage: 135 # 2022-11-30 18:54:50.571 logline:24542 data_in: TailleBuffer: 8388608 # 2022-11-30 18:57:02.155 logline:24640 camera: 6 # 2022-11-30 18:54:54.679 logline:24634 cm: -4.993e-07 # 2022-11-30 18:57:02.186 logline:24651 entraxe: 1.78465e-05 # 2022-11-30 18:57:02.186 logline:24652 evh: -0.000145194 # 2022-11-30 18:57:02.202 logline:24661 evh0: -0.000145194 # 2022-11-30 18:57:02.202 logline:24660 evv: -0.000107567 # 2022-11-30 18:57:02.202 logline:24659 evv0: -0.000169763 # 2022-11-30 18:57:02.202 logline:24658 iTimeout: 900000 # 2022-11-30 18:54:54.679 logline:24639 iTimetout: 900000 # 2022-11-30 18:54:54.679 logline:24638 longueurOnde: 0 # 2022-11-30 18:57:02.155 logline:24647 modeRC: 3 # 2022-11-30 18:57:02.155 logline:24648 name: ReferenceCamera # 2022-11-30 18:57:02.155 logline:24640 phiR0: 3.08042 # 2022-11-30 18:57:02.186 logline:24654 temperatureInstantanée: 28.3 # 2022-11-30 18:57:02.202 logline:24657 thetaR0: 2.4272 # 2022-11-30 18:57:02.186 logline:24653 data_out: consigneR4_X: 1033.98 # 2022-11-30 18:57:02.202 logline:24663 consigneR4_Y: 963.635 # 2022-11-30 18:57:02.202 logline:24664 consigneR4_Z: 0 # 2022-11-30 18:57:02.202 logline:24665 call_038: timing: start: 19:02:00.644 # 2022-11-30 19:02:00.644 logline:24781 finish: 19:04:10.213 # 2022-11-30 19:04:10.213 logline:24830 duration: api: 0.0 cpp: 129.569 totalcalltime: 129.569 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:01:56.708 logline:24706 tableEchangeLecture.numPiquage: 130 # 2022-11-30 19:01:56.708 logline:24706 data_in: TailleBuffer: 8388608 # 2022-11-30 19:04:10.166 logline:24804 camera: 6 # 2022-11-30 19:02:00.691 logline:24798 cm: -4.993e-07 # 2022-11-30 19:04:10.182 logline:24815 entraxe: 1.78465e-05 # 2022-11-30 19:04:10.182 logline:24816 evh: -0.000145194 # 2022-11-30 19:04:10.213 logline:24825 evh0: -0.000145194 # 2022-11-30 19:04:10.213 logline:24824 evv: -0.000108407 # 2022-11-30 19:04:10.213 logline:24823 evv0: -0.000169763 # 2022-11-30 19:04:10.213 logline:24822 iTimeout: 900000 # 2022-11-30 19:02:00.691 logline:24803 iTimetout: 900000 # 2022-11-30 19:02:00.691 logline:24802 longueurOnde: 0 # 2022-11-30 19:04:10.166 logline:24811 modeRC: 3 # 2022-11-30 19:04:10.166 logline:24812 name: ReferenceCamera # 2022-11-30 19:04:10.166 logline:24804 phiR0: 0.0205039 # 2022-11-30 19:04:10.198 logline:24818 temperatureInstantanée: 28.2 # 2022-11-30 19:04:10.213 logline:24821 thetaR0: 2.14829 # 2022-11-30 19:04:10.198 logline:24817 data_out: consigneR4_X: 1033.97 # 2022-11-30 19:04:10.213 logline:24827 consigneR4_Y: 961.727 # 2022-11-30 19:04:10.213 logline:24828 consigneR4_Z: 0 # 2022-11-30 19:04:10.213 logline:24829 call_039: timing: start: 19:07:48.265 # 2022-11-30 19:07:48.265 logline:24945 finish: 19:09:53.225 # 2022-11-30 19:09:53.225 logline:24994 duration: api: 0.0 cpp: 124.96 totalcalltime: 124.96 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:07:44.328 logline:24870 tableEchangeLecture.numPiquage: 135 # 2022-11-30 19:07:44.328 logline:24870 data_in: TailleBuffer: 8388608 # 2022-11-30 19:09:53.178 logline:24968 camera: 6 # 2022-11-30 19:07:48.312 logline:24962 cm: -4.993e-07 # 2022-11-30 19:09:53.194 logline:24979 entraxe: 1.78465e-05 # 2022-11-30 19:09:53.194 logline:24980 evh: -0.000145194 # 2022-11-30 19:09:53.209 logline:24989 evh0: -0.000145194 # 2022-11-30 19:09:53.209 logline:24988 evv: -0.000108407 # 2022-11-30 19:09:53.209 logline:24987 evv0: -0.000169763 # 2022-11-30 19:09:53.209 logline:24986 iTimeout: 900000 # 2022-11-30 19:07:48.312 logline:24967 iTimetout: 900000 # 2022-11-30 19:07:48.312 logline:24966 longueurOnde: 0 # 2022-11-30 19:09:53.178 logline:24975 modeRC: 3 # 2022-11-30 19:09:53.178 logline:24976 name: ReferenceCamera # 2022-11-30 19:09:53.178 logline:24968 phiR0: 3.08042 # 2022-11-30 19:09:53.194 logline:24982 temperatureInstantanée: 28.2 # 2022-11-30 19:09:53.209 logline:24985 thetaR0: 2.4272 # 2022-11-30 19:09:53.194 logline:24981 data_out: consigneR4_X: 1033.98 # 2022-11-30 19:09:53.209 logline:24991 consigneR4_Y: 963.521 # 2022-11-30 19:09:53.209 logline:24992 consigneR4_Z: 0 # 2022-11-30 19:09:53.209 logline:24993 call_040: timing: start: 19:14:07.941 # 2022-11-30 19:14:07.941 logline:25109 finish: 19:16:14.228 # 2022-11-30 19:16:14.228 logline:25158 duration: api: 0.0 cpp: 126.287 totalcalltime: 126.287 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:14:03.567 logline:25034 tableEchangeLecture.numPiquage: 130 # 2022-11-30 19:14:03.567 logline:25034 data_in: TailleBuffer: 8388608 # 2022-11-30 19:16:14.181 logline:25132 camera: 6 # 2022-11-30 19:14:07.987 logline:25126 cm: -4.993e-07 # 2022-11-30 19:16:14.213 logline:25143 entraxe: 1.78465e-05 # 2022-11-30 19:16:14.213 logline:25144 evh: -0.000145194 # 2022-11-30 19:16:14.228 logline:25153 evh0: -0.000145194 # 2022-11-30 19:16:14.228 logline:25152 evv: -0.000108407 # 2022-11-30 19:16:14.228 logline:25151 evv0: -0.000169763 # 2022-11-30 19:16:14.228 logline:25150 iTimeout: 900000 # 2022-11-30 19:14:07.987 logline:25131 iTimetout: 900000 # 2022-11-30 19:14:07.987 logline:25130 longueurOnde: 0 # 2022-11-30 19:16:14.181 logline:25139 modeRC: 3 # 2022-11-30 19:16:14.181 logline:25140 name: ReferenceCamera # 2022-11-30 19:16:14.181 logline:25132 phiR0: 0.0205039 # 2022-11-30 19:16:14.213 logline:25146 temperatureInstantanée: 28.2 # 2022-11-30 19:16:14.228 logline:25149 thetaR0: 2.14829 # 2022-11-30 19:16:14.213 logline:25145 data_out: consigneR4_X: 1033.97 # 2022-11-30 19:16:14.228 logline:25155 consigneR4_Y: 961.727 # 2022-11-30 19:16:14.228 logline:25156 consigneR4_Z: 0 # 2022-11-30 19:16:14.228 logline:25157 call_041: timing: start: 19:21:07.624 # 2022-11-30 19:21:07.624 logline:25273 finish: 19:23:15.239 # 2022-11-30 19:23:15.239 logline:25322 duration: api: 0.0 cpp: 127.615 totalcalltime: 127.615 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:21:03.250 logline:25198 tableEchangeLecture.numPiquage: 135 # 2022-11-30 19:21:03.250 logline:25198 data_in: TailleBuffer: 8388608 # 2022-11-30 19:23:15.192 logline:25296 camera: 6 # 2022-11-30 19:21:07.671 logline:25290 cm: -4.993e-07 # 2022-11-30 19:23:15.208 logline:25307 entraxe: 1.78465e-05 # 2022-11-30 19:23:15.208 logline:25308 evh: -0.000145194 # 2022-11-30 19:23:15.239 logline:25317 evh0: -0.000145194 # 2022-11-30 19:23:15.239 logline:25316 evv: -0.000108407 # 2022-11-30 19:23:15.239 logline:25315 evv0: -0.000169763 # 2022-11-30 19:23:15.239 logline:25314 iTimeout: 900000 # 2022-11-30 19:21:07.671 logline:25295 iTimetout: 900000 # 2022-11-30 19:21:07.671 logline:25294 longueurOnde: 0 # 2022-11-30 19:23:15.192 logline:25303 modeRC: 3 # 2022-11-30 19:23:15.192 logline:25304 name: ReferenceCamera # 2022-11-30 19:23:15.192 logline:25296 phiR0: 3.08042 # 2022-11-30 19:23:15.208 logline:25310 temperatureInstantanée: 28.2 # 2022-11-30 19:23:15.239 logline:25313 thetaR0: 2.4272 # 2022-11-30 19:23:15.208 logline:25309 data_out: consigneR4_X: 1033.98 # 2022-11-30 19:23:15.239 logline:25319 consigneR4_Y: 963.521 # 2022-11-30 19:23:15.239 logline:25320 consigneR4_Z: 0 # 2022-11-30 19:23:15.239 logline:25321 call_042: timing: start: 19:27:48.966 # 2022-11-30 19:27:48.966 logline:25437 finish: 19:29:41.241 # 2022-11-30 19:29:41.241 logline:25486 duration: api: 0.0 cpp: 112.275 totalcalltime: 112.275 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:27:44.686 logline:25362 tableEchangeLecture.numPiquage: 130 # 2022-11-30 19:27:44.686 logline:25362 data_in: TailleBuffer: 8388608 # 2022-11-30 19:29:41.194 logline:25460 camera: 6 # 2022-11-30 19:27:49.013 logline:25454 cm: -4.993e-07 # 2022-11-30 19:29:41.225 logline:25471 entraxe: 1.78465e-05 # 2022-11-30 19:29:41.225 logline:25472 evh: -0.000145194 # 2022-11-30 19:29:41.241 logline:25481 evh0: -0.000145194 # 2022-11-30 19:29:41.241 logline:25480 evv: -0.000107567 # 2022-11-30 19:29:41.241 logline:25479 evv0: -0.000169763 # 2022-11-30 19:29:41.241 logline:25478 iTimeout: 900000 # 2022-11-30 19:27:49.013 logline:25459 iTimetout: 900000 # 2022-11-30 19:27:49.013 logline:25458 longueurOnde: 0 # 2022-11-30 19:29:41.209 logline:25467 modeRC: 3 # 2022-11-30 19:29:41.209 logline:25468 name: ReferenceCamera # 2022-11-30 19:29:41.194 logline:25460 phiR0: 0.0205039 # 2022-11-30 19:29:41.225 logline:25474 temperatureInstantanée: 28.3 # 2022-11-30 19:29:41.241 logline:25477 thetaR0: 2.14829 # 2022-11-30 19:29:41.225 logline:25473 data_out: consigneR4_X: 1033.97 # 2022-11-30 19:29:41.241 logline:25483 consigneR4_Y: 961.84 # 2022-11-30 19:29:41.241 logline:25484 consigneR4_Z: 0 # 2022-11-30 19:29:41.241 logline:25485 call_043: timing: start: 19:33:30.132 # 2022-11-30 19:33:30.132 logline:25601 finish: 19:35:20.251 # 2022-11-30 19:35:20.251 logline:25650 duration: api: 0.0 cpp: 110.119 totalcalltime: 110.119 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:33:25.868 logline:25526 tableEchangeLecture.numPiquage: 135 # 2022-11-30 19:33:25.868 logline:25526 data_in: TailleBuffer: 8388608 # 2022-11-30 19:35:20.204 logline:25624 camera: 6 # 2022-11-30 19:33:30.195 logline:25618 cm: -4.993e-07 # 2022-11-30 19:35:20.220 logline:25635 entraxe: 1.78465e-05 # 2022-11-30 19:35:20.220 logline:25636 evh: -0.000145194 # 2022-11-30 19:35:20.235 logline:25645 evh0: -0.000145194 # 2022-11-30 19:35:20.235 logline:25644 evv: -0.000108407 # 2022-11-30 19:35:20.235 logline:25643 evv0: -0.000169763 # 2022-11-30 19:35:20.235 logline:25642 iTimeout: 900000 # 2022-11-30 19:33:30.195 logline:25623 iTimetout: 900000 # 2022-11-30 19:33:30.195 logline:25622 longueurOnde: 0 # 2022-11-30 19:35:20.204 logline:25631 modeRC: 3 # 2022-11-30 19:35:20.204 logline:25632 name: ReferenceCamera # 2022-11-30 19:35:20.204 logline:25624 phiR0: 3.08042 # 2022-11-30 19:35:20.235 logline:25638 temperatureInstantanée: 28.2 # 2022-11-30 19:35:20.235 logline:25641 thetaR0: 2.4272 # 2022-11-30 19:35:20.235 logline:25637 data_out: consigneR4_X: 1033.98 # 2022-11-30 19:35:20.251 logline:25647 consigneR4_Y: 963.521 # 2022-11-30 19:35:20.251 logline:25648 consigneR4_Z: 0 # 2022-11-30 19:35:20.251 logline:25649 call_044: timing: start: 19:39:57.883 # 2022-11-30 19:39:57.883 logline:25765 finish: 19:41:50.250 # 2022-11-30 19:41:50.250 logline:25814 duration: api: 0.0 cpp: 112.367 totalcalltime: 112.367 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:39:53.180 logline:25690 tableEchangeLecture.numPiquage: 130 # 2022-11-30 19:39:53.180 logline:25690 data_in: TailleBuffer: 8388608 # 2022-11-30 19:41:50.204 logline:25788 camera: 6 # 2022-11-30 19:39:57.929 logline:25782 cm: -4.993e-07 # 2022-11-30 19:41:50.235 logline:25799 entraxe: 1.78465e-05 # 2022-11-30 19:41:50.235 logline:25800 evh: -0.000145194 # 2022-11-30 19:41:50.250 logline:25809 evh0: -0.000145194 # 2022-11-30 19:41:50.250 logline:25808 evv: -0.000107567 # 2022-11-30 19:41:50.250 logline:25807 evv0: -0.000169763 # 2022-11-30 19:41:50.250 logline:25806 iTimeout: 900000 # 2022-11-30 19:39:57.929 logline:25787 iTimetout: 900000 # 2022-11-30 19:39:57.929 logline:25786 longueurOnde: 0 # 2022-11-30 19:41:50.219 logline:25795 modeRC: 3 # 2022-11-30 19:41:50.219 logline:25796 name: ReferenceCamera # 2022-11-30 19:41:50.204 logline:25788 phiR0: 0.0205039 # 2022-11-30 19:41:50.235 logline:25802 temperatureInstantanée: 28.3 # 2022-11-30 19:41:50.250 logline:25805 thetaR0: 2.14829 # 2022-11-30 19:41:50.235 logline:25801 data_out: consigneR4_X: 1033.97 # 2022-11-30 19:41:50.250 logline:25811 consigneR4_Y: 961.84 # 2022-11-30 19:41:50.250 logline:25812 consigneR4_Z: 0 # 2022-11-30 19:41:50.250 logline:25813 call_045: timing: start: 19:46:19.837 # 2022-11-30 19:46:19.837 logline:25929 finish: 19:48:10.252 # 2022-11-30 19:48:10.252 logline:25978 duration: api: 0.0 cpp: 110.415 totalcalltime: 110.415 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:46:15.353 logline:25854 tableEchangeLecture.numPiquage: 135 # 2022-11-30 19:46:15.353 logline:25854 data_in: TailleBuffer: 8388608 # 2022-11-30 19:48:10.220 logline:25952 camera: 6 # 2022-11-30 19:46:19.883 logline:25946 cm: -4.993e-07 # 2022-11-30 19:48:10.236 logline:25963 entraxe: 1.78465e-05 # 2022-11-30 19:48:10.236 logline:25964 evh: -0.000145194 # 2022-11-30 19:48:10.252 logline:25973 evh0: -0.000145194 # 2022-11-30 19:48:10.252 logline:25972 evv: -0.000107567 # 2022-11-30 19:48:10.252 logline:25971 evv0: -0.000169763 # 2022-11-30 19:48:10.252 logline:25970 iTimeout: 900000 # 2022-11-30 19:46:19.883 logline:25951 iTimetout: 900000 # 2022-11-30 19:46:19.883 logline:25950 longueurOnde: 0 # 2022-11-30 19:48:10.220 logline:25959 modeRC: 3 # 2022-11-30 19:48:10.220 logline:25960 name: ReferenceCamera # 2022-11-30 19:48:10.220 logline:25952 phiR0: 3.08042 # 2022-11-30 19:48:10.236 logline:25966 temperatureInstantanée: 28.3 # 2022-11-30 19:48:10.252 logline:25969 thetaR0: 2.4272 # 2022-11-30 19:48:10.236 logline:25965 data_out: consigneR4_X: 1033.98 # 2022-11-30 19:48:10.252 logline:25975 consigneR4_Y: 963.635 # 2022-11-30 19:48:10.252 logline:25976 consigneR4_Z: 0 # 2022-11-30 19:48:10.252 logline:25977 call_046: timing: start: 19:52:48.461 # 2022-11-30 19:52:48.461 logline:26093 finish: 19:54:40.266 # 2022-11-30 19:54:40.266 logline:26142 duration: api: 0.0 cpp: 111.805 totalcalltime: 111.805 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:52:44.087 logline:26018 tableEchangeLecture.numPiquage: 130 # 2022-11-30 19:52:44.087 logline:26018 data_in: TailleBuffer: 8388608 # 2022-11-30 19:54:40.219 logline:26116 camera: 6 # 2022-11-30 19:52:48.507 logline:26110 cm: -4.993e-07 # 2022-11-30 19:54:40.250 logline:26127 entraxe: 1.78465e-05 # 2022-11-30 19:54:40.250 logline:26128 evh: -0.000145194 # 2022-11-30 19:54:40.266 logline:26137 evh0: -0.000145194 # 2022-11-30 19:54:40.266 logline:26136 evv: -0.000108407 # 2022-11-30 19:54:40.266 logline:26135 evv0: -0.000169763 # 2022-11-30 19:54:40.266 logline:26134 iTimeout: 900000 # 2022-11-30 19:52:48.507 logline:26115 iTimetout: 900000 # 2022-11-30 19:52:48.507 logline:26114 longueurOnde: 0 # 2022-11-30 19:54:40.219 logline:26123 modeRC: 3 # 2022-11-30 19:54:40.219 logline:26124 name: ReferenceCamera # 2022-11-30 19:54:40.219 logline:26116 phiR0: 0.0205039 # 2022-11-30 19:54:40.250 logline:26130 temperatureInstantanée: 28.2 # 2022-11-30 19:54:40.266 logline:26133 thetaR0: 2.14829 # 2022-11-30 19:54:40.250 logline:26129 data_out: consigneR4_X: 1033.97 # 2022-11-30 19:54:40.266 logline:26139 consigneR4_Y: 961.727 # 2022-11-30 19:54:40.266 logline:26140 consigneR4_Z: 0 # 2022-11-30 19:54:40.266 logline:26141 call_047: timing: start: 19:58:22.408 # 2022-11-30 19:58:22.408 logline:26257 finish: 20:00:12.276 # 2022-11-30 20:00:12.276 logline:26306 duration: api: 0.0 cpp: 109.868 totalcalltime: 109.868 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 19:58:18.253 logline:26182 tableEchangeLecture.numPiquage: 135 # 2022-11-30 19:58:18.253 logline:26182 data_in: TailleBuffer: 8388608 # 2022-11-30 20:00:12.229 logline:26280 camera: 6 # 2022-11-30 19:58:22.455 logline:26274 cm: -4.993e-07 # 2022-11-30 20:00:12.245 logline:26291 entraxe: 1.78465e-05 # 2022-11-30 20:00:12.245 logline:26292 evh: -0.000145194 # 2022-11-30 20:00:12.260 logline:26301 evh0: -0.000145194 # 2022-11-30 20:00:12.260 logline:26300 evv: -0.000107567 # 2022-11-30 20:00:12.260 logline:26299 evv0: -0.000169763 # 2022-11-30 20:00:12.260 logline:26298 iTimeout: 900000 # 2022-11-30 19:58:22.455 logline:26279 iTimetout: 900000 # 2022-11-30 19:58:22.455 logline:26278 longueurOnde: 0 # 2022-11-30 20:00:12.229 logline:26287 modeRC: 3 # 2022-11-30 20:00:12.229 logline:26288 name: ReferenceCamera # 2022-11-30 20:00:12.229 logline:26280 phiR0: 3.08042 # 2022-11-30 20:00:12.245 logline:26294 temperatureInstantanée: 28.3 # 2022-11-30 20:00:12.260 logline:26297 thetaR0: 2.4272 # 2022-11-30 20:00:12.245 logline:26293 data_out: consigneR4_X: 1033.98 # 2022-11-30 20:00:12.260 logline:26303 consigneR4_Y: 963.635 # 2022-11-30 20:00:12.260 logline:26304 consigneR4_Z: 0 # 2022-11-30 20:00:12.260 logline:26305 call_048: timing: start: 20:05:24.493 # 2022-11-30 20:05:24.493 logline:26421 finish: 20:07:16.282 # 2022-11-30 20:07:16.282 logline:26470 duration: api: 0.0 cpp: 111.789 totalcalltime: 111.789 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 20:05:19.791 logline:26346 tableEchangeLecture.numPiquage: 130 # 2022-11-30 20:05:19.791 logline:26346 data_in: TailleBuffer: 8388608 # 2022-11-30 20:07:16.220 logline:26444 camera: 6 # 2022-11-30 20:05:24.540 logline:26438 cm: -4.993e-07 # 2022-11-30 20:07:16.251 logline:26455 entraxe: 1.78465e-05 # 2022-11-30 20:07:16.251 logline:26456 evh: -0.000145194 # 2022-11-30 20:07:16.267 logline:26465 evh0: -0.000145194 # 2022-11-30 20:07:16.267 logline:26464 evv: -0.000107567 # 2022-11-30 20:07:16.267 logline:26463 evv0: -0.000169763 # 2022-11-30 20:07:16.267 logline:26462 iTimeout: 900000 # 2022-11-30 20:05:24.540 logline:26443 iTimetout: 900000 # 2022-11-30 20:05:24.540 logline:26442 longueurOnde: 0 # 2022-11-30 20:07:16.236 logline:26451 modeRC: 3 # 2022-11-30 20:07:16.236 logline:26452 name: ReferenceCamera # 2022-11-30 20:07:16.220 logline:26444 phiR0: 0.0205039 # 2022-11-30 20:07:16.251 logline:26458 temperatureInstantanée: 28.3 # 2022-11-30 20:07:16.267 logline:26461 thetaR0: 2.14829 # 2022-11-30 20:07:16.251 logline:26457 data_out: consigneR4_X: 1033.97 # 2022-11-30 20:07:16.267 logline:26467 consigneR4_Y: 961.84 # 2022-11-30 20:07:16.267 logline:26468 consigneR4_Z: 0 # 2022-11-30 20:07:16.267 logline:26469 call_049: timing: start: 20:11:09.718 # 2022-11-30 20:11:09.718 logline:26585 finish: 20:12:59.274 # 2022-11-30 20:12:59.274 logline:26634 duration: api: 0.0 cpp: 109.556 totalcalltime: 109.556 # aberration! not in average. data_precedence: name: Reference # 2022-11-30 20:11:05.344 logline:26510 tableEchangeLecture.numPiquage: 135 # 2022-11-30 20:11:05.344 logline:26510 data_in: TailleBuffer: 8388608 # 2022-11-30 20:12:59.227 logline:26608 camera: 6 # 2022-11-30 20:11:09.765 logline:26602 cm: -4.993e-07 # 2022-11-30 20:12:59.258 logline:26619 entraxe: 1.78465e-05 # 2022-11-30 20:12:59.258 logline:26620 evh: -0.000145194 # 2022-11-30 20:12:59.274 logline:26629 evh0: -0.000145194 # 2022-11-30 20:12:59.274 logline:26628 evv: -0.000108407 # 2022-11-30 20:12:59.274 logline:26627 evv0: -0.000169763 # 2022-11-30 20:12:59.274 logline:26626 iTimeout: 900000 # 2022-11-30 20:11:09.765 logline:26607 iTimetout: 900000 # 2022-11-30 20:11:09.765 logline:26606 longueurOnde: 0 # 2022-11-30 20:12:59.243 logline:26615 modeRC: 3 # 2022-11-30 20:12:59.243 logline:26616 name: ReferenceCamera # 2022-11-30 20:12:59.227 logline:26608 phiR0: 3.08042 # 2022-11-30 20:12:59.258 logline:26622 temperatureInstantanée: 28.2 # 2022-11-30 20:12:59.274 logline:26625 thetaR0: 2.4272 # 2022-11-30 20:12:59.258 logline:26621 data_out: consigneR4_X: 1033.98 # 2022-11-30 20:12:59.274 logline:26631 consigneR4_Y: 963.521 # 2022-11-30 20:12:59.274 logline:26632 consigneR4_Z: 0 # 2022-11-30 20:12:59.274 logline:26633


--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/7d467a58-37ff-477c-9104-e96d0cfed2a9n%40googlegroups.com.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/CAOmRJrdzQ3AcyXbyYrbHf3YaeLYjuDiPeFso7Jd82m-mzLtj0Q%40mail.gmail.com.