Versions Compared

Key

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

...

Panel

Class ConfigV1

Python wrapper for pdsdata/acqiris/ConfigV1 class.


Construction

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


Method nbrConvertersPerChannel()

Usage: num = cfg.nbrConvertersPerChannel()

Returns integer number.


Method channelMask()

Usage: mask = cfg.channelMask()

Returns integer number.


Method nbrChannels()

Usage: num = cfg.nbrChannels()

Returns integer number.


Method nbrBanks()

Usage: num = cfg.nbrBanks()

Returns integer number.


Method horiz()

Usage: hconfig = cfg.horiz()

Returns object of acqiris.HorizV1 type.


Method trig()

Usage: trig = cfg.trig()

Returns object of acqiris.TrigV1 type.


Method vert()

Usage: vconfig = cfg.vert(channel)

Returns object of acqiris.VertV1 type.

Arguments:

  • channel – channel number

...

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