Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel

Class DataDescV1

Python wrapper for pdsdata/acqiris/DataDescV1 class.


Construction

This class cannot be instantiated directly, methods of other classes return instances of this type.


Method nbrSamplesInSeg()

Usage: nsampl = dd.nbrSamplesInSeg()

Returns integer number.


Method nbrSegments()

Usage: nseg = dd.nbrSegments()

Returns integer number.


Method indexFirstPoint()

Usage: idx = dd.indexFirstPoint()

Returns integer number.


Method timestamp()

Usage: ts = dd.timestamp(segment)

Returns object of acqiris.TimestampV1 type.

Arguments:

  • segment - segment number

Method waveform()

Usage: wf = dd.waveform(hconfig)

Returns waveform arry of numpy.ndarray type.

Arguments:

  • hconfig - object of acqiris.HorizV1 type

Method nextChannel()

Usage: nextdd = dd.nextChannel(hconfig)

Returns data object of acqiris.DataDescV1 type for next channel or None after the last channel.

Arguments:

  • hconfig - object of acqiris.HorizV1 type

...

Panel

Class HorizV1

Python wrapper for pdsdata/acqiris/HorizV1 class.


Construction

This class cannot be instantiated directly, methods of other classes return instances of this type.


Method sampInterval()

Usage: interval = hconfig.sampInterval()

Returns floating number.


Method delayTime()

Usage: delay = hconfig.delayTime()

Returns floating number.


Method nbrSamples()

Usage: nsampl = hconfig.nbrSamples()

Returns integer number.


Method nbrSegments()

Usage: nseg = hconfig.nbrSegments()

Returns integer number.