mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-16 02:43:43 +01:00
added enablegappixels to users class
This commit is contained in:
@@ -275,8 +275,9 @@ int64_t slsDetectorUsers::getThisSoftwareVersion(){
|
|||||||
return myDetector->getThisSoftwareVersion();
|
return myDetector->getThisSoftwareVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int slsDetectorUsers::enableGapPixels(int enable) {
|
||||||
|
return myDetector->enableGapPixels(enable);
|
||||||
|
}
|
||||||
|
|
||||||
void slsDetectorUsers::registerDataCallback(int( *userCallback)(detectorData*, int, int, void*), void *pArg){
|
void slsDetectorUsers::registerDataCallback(int( *userCallback)(detectorData*, int, int, void*), void *pArg){
|
||||||
myDetector->registerDataCallback(userCallback,pArg);
|
myDetector->registerDataCallback(userCallback,pArg);
|
||||||
|
|||||||
@@ -528,6 +528,14 @@ class slsDetectorUsers
|
|||||||
*/
|
*/
|
||||||
int64_t getThisSoftwareVersion();
|
int64_t getThisSoftwareVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable gap pixels, only for Eiger and for 8,16 and 32 bit mode.
|
||||||
|
* 4 bit mode gap pixels only in gui call back (registerDataCallback)
|
||||||
|
* @param enable 1 sets, 0 unsets, -1 gets
|
||||||
|
* @return gap pixel enable or -1 for error
|
||||||
|
*/
|
||||||
|
int enableGapPixels(int enable=-1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@short register calbback for accessing detector final data
|
@short register calbback for accessing detector final data
|
||||||
\param func function to be called at the end of the acquisition. gets detector status and progress index as arguments
|
\param func function to be called at the end of the acquisition. gets detector status and progress index as arguments
|
||||||
|
|||||||
Reference in New Issue
Block a user