Migrating to the Pixie SDK C API#

Introduction#

The new API has a number of differences with the Legacy API. We have not strictly followed our API Update Policy since the Legacy API is still available for use. Each section of this document contains a short discussion of why the specific changes are necessary, and closes with the recommended changes that user’s will need to effect in their software.

We’ll detail the major differences here to provide users with an idea of what to look for. Implementations are as varied as our users. We can’t cover all the uses in this document.

We’re happy to help with your transition if you email our Support Team.

Library changes#

The Legacy API originally had two libraries that users needed to link against. One was for the application API, and the other for internal functions used by that API. We’ve now simplified that process. The new API library automatically combines the internal library (PixieSDK.a) within it. This allows us to make sure that the boundary between internal and external usages stays clear.

We’ve adopted CMake as a build script generator. For customers using CMake to build their own projects, we offer FindPixieSDK.cmake to ease the location and linkage of these libraries.

Software should be linked against the new API library: Pixie16Api.so.

PCI definitions#

The Pixie crates have two PCI backplanes. In PCI based crates these backplanes are daisy-chained together. This ensures that the two PCI buses enumerate in a deterministic order. This also means that data read out of the second bus must pass through the first bus. This has the effect of limiting data throughput for modules on the second bus. The PCI crates used the pxisys.ini file to determine the specific bus configuration and setup. This allowed us to map the PCI bus and slot to a physical slot on the crate.

We recently released a PCIe version of the crate where the two PCI busses are now in parallel. This greatly improves the throughput for modules on the second bus. This change makes the PCI bus enumeration non-deterministic. Now that the PCI bus order isn’t guaranteed, the pxisys.ini file no longer works as expected.

The modules have the ability to probe the backplane and determine their slot automatically. The API now uses this functionality to determine the physical slot that the module occupies. This procedure eliminates the need for the pxisys.ini file.

Users no longer need to provide the API with the pxisys.ini file.

Settings files#

The Legacy API used binary settings files to write the initial set of variables to the module’s DSP, and to output run statistics from list-mode data runs. The settings files could be decoded using the DSP’s .var file and some magic numbers from the includes. This format presents several challenges.

First, the file is written to disk as a binary data blob. This blob wasn’t human-readable and required magic numbers from our headers to decode. We’ve internalized many of the magic numbers necessary to read this file. The section Globally defined constants highlights the changes related to constants.

Second, user code may be dependent upon an internally managed file structure. The binary settings files are simply a snapshot of the DSP’s internal memory. User code that’s dependent on this file structure is implicitly dependent on the DSP firmware. This creates a problem when we need to add and update functionality for the DSP.

Finally, this file mixes variable initialization and output data. This is problematic because it makes the purpose of the file unclear. Mixing input and output of data means that users may adopt habits for retrieving these data that are not supported by the API.

The API now uses JSON based settings files. These files can be dynamically changed without affecting the DSP, only include input variables, and can support metadata. The metadata allows users to keep track of all the information necessary for a user to exactly reconstruct an experimental setup. All values are stored in their native DSP format.

Pixie16LoadDSPParametersFromFile and Pixie16BootModule accept both binary and JSON based settings files. Pixie16SaveDSPParametersToFile will write a JSON file containing only the online modules in the system. The API handles this conversion internally for the user.

The API will support legacy binary settings files until July 31, 2023.

No changes are necessary when calling Pixie16LoadDSPParametersFromFile and Pixie16BootModule. User code that decodes the binary settings file should follow the recommendations listed in the Globally defined constants section. Users that use Pixie16SaveDSPParametersToFile to access run statistics data should update to use Pixie16ReadStatisticsFromModule and the associated support functions.

Header files#

The Legacy API had several header files that users may have included in their software. These include pixie16app_defs.h, pixie16app_export.h, and xia_common.h.

We have removed xia_common.h from the library. This header included some helper functions used by XIA in other projects. Many of these helper functions are now included in the core language functionality.

All Legacy header file usages should be replaced with a single include of pixie16.h. All macros taken from xia_common.h should either be removed, updated with the language standards, or internalized to the user’s code.

Globally defined constants#

The Legacy API exposed a number of globally defined constants that need to be internal to the SDK. This includes DSP sizes, maximum lengths for objects (trace, histogram), and control register bit values. We have internalized many of these constants. We have kept a handful of the defines available in pixie16.h while we finalize their implementation.

Users often calculate the size of the Statistics block using the following calculation:

Statistics Size = N_DSP_PAR - DSP_IO_BORDER.

We now have a helper function (Pixie16GetStatisticsSize()) that returns the size for the user. This allows us to make modifications to the statistics without impacts to the user’s code. We’ve found that customers often use the constant RANDOMINDICES_LENGTH to initialize trace containers. The correct constant to use is MAX_ADC_TRACE_LEN. We will be replacing many of these defines with helper functions in the future to accommodate changes in size.

All usages of constants defined in pixie16app_defs.h or pixie16sys_defs.h should be removed, replaced, or brought into the user’s code.

Table of Defined Constants#

Please note that we will be deprecating these constants with the Legacy API.

Name

Value

CCSRA_ENARELAY

14

CCSRA_GOOD

2

CCSRA_POLARITY

5

EXTERNAL_FIFO_LENGTH

131072

LIST_MODE_RUN

0x100

MAX_ADC_TRACE_LEN

8192

MAX_HISTOGRAM_LENGTH

32768

MAX_NUM_BASELINES

3640

NEW_RUN

1

NUMBER_OF_CHANNELS

16

RESUME_RUN

0

SYS_MAX_NUM_MODULES

32

Error Codes#

The Legacy API functions redefined the meaning of their returned error codes. Pixie16BootModule and Pixie16InitSystem both have a -1 error code. The meaning of that error code is different. The new API now has consistent error codes across all functions. This provides users with much more actionable insights into what the error was.

All error handling should be updated to include checks on the appropriate error codes.

Functions#

We have kept the function calls between the Legacy API and the SDK identical. They have the same signature, name, and return values. We have removed functions that were used exclusively for GUI support, internal QA, or data analysis.

Existing function calls should not need to be updated. Any calls to removed functions should be updated.

Table of API Functions#

Function

Legacy API

PixieSDK API

Notes

APP16_ClrBit

X

X

Will be deprecated in SDK.

APP16_SetBit

X

X

Will be deprecated in SDK.

APP16_TstBit

X

X

Will be deprecated in SDK.

APP32_ClrBit

X

X

Will be deprecated in SDK.

APP32_SetBit

X

X

Will be deprecated in SDK.

APP32_TstBit

X

X

Will be deprecated in SDK.

IEEEFloating2Decimal

X

X

Decimal2IEEEFloating

X

X

Pixie16AcquireADCTrace

X

X

Pixie16AcquireBaselines

X

X

Pixie16AdjustOffsets

X

X

Pixie16BLcutFinder

X

X

Pixie16BootModule

X

X

Pixie16CheckExternalFIFOStatus

X

X

Pixie16CheckRunStatus

X

X

Pixie16ComputeFastFiltersOffline

X

-

GUI support

Pixie16ComputeInputCountRate

X

X

Pixie16ComputeLiveTime

X

X

Pixie16ComputeOutputCountRate

X

X

Pixie16ComputeProcessedEvents

X

-

Rev A modules only!

Pixie16ComputeRealTime

X

X

Pixie16ComputeSlowFiltersOffline

X

-

GUI support

Pixie16ControlTaskRun

X

-

QA use only

Pixie16CopyDSPParameters

X

X

Pixie16EMbufferIO

X

-

QA use only

Pixie16EndRun

X

X

Pixie16ExitSystem

X

X

Pixie16GetEventsInfo

X

-

GUI support

Pixie16GetModuleEvents

X

-

GUI support

Pixie16IMbufferIO

X

-

QA use only

Pixie16InitSystem

X

X

Pixie16LoadDSPParametersFromFile

X

X

Pixie16ProgramFippi

X

-

Part of Pixie16BootModule

Pixie16RampOffsetDACs (deprecated)

X

-

Deprecated for several years

Pixie16ReadCSR

X

-

QA use only

Pixie16ReadDataFromExternalFIFO

X

X

Pixie16ReadHistogramFromFile

X

-

GUI support

Pixie16ReadHistogramFromModule

X

X

Pixie16ReadListModeTrace

X

-

GUI support

Pixie16ReadModuleInfo

X

X

Pixie16ReadSglChanADCTrace

X

X

Pixie16ReadSglChanBaselines

X

X

Pixie16ReadSglChanPar

X

X

Pixie16ReadSglModPar

X

X

Pixie16ReadStatisticsFromModule

X

X

Pixie16RegisterIO

X

-

QA use only

Pixie16SaveDSPParametersToFile

X

X

Pixie16SaveExternalFIFODataToFile

X

-

QA use only

Pixie16SaveHistogramToFile

X

-

Pixie16SetDACs

X

X

Pixie16StartHistogramRun

X

X

Pixie16StartListModeRun

X

X

Pixie16TauFinder

X

X

Pixie16WriteCSR

X

-

QA use only

Pixie16WriteSglChanPar

X

X

Pixie16WriteSglModPar

X

X