mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-15 06:17:12 +02:00
Jf: Electron collection mode (#983)
* electron collection mode for jungfrau. also removing the config chip when using register command * collectionMode: HOLE/ELECTRON (enum)
This commit is contained in:
@ -1940,6 +1940,14 @@ void Module::setPedestalMode(const defs::pedestalParameters par) {
|
||||
}
|
||||
}
|
||||
|
||||
defs::collectionMode Module::getCollectionMode() const {
|
||||
return sendToDetector<defs::collectionMode>(F_GET_COLLECTION_MODE);
|
||||
}
|
||||
|
||||
void Module::setCollectionMode(const defs::collectionMode value) {
|
||||
sendToDetector(F_SET_COLLECTION_MODE, static_cast<int>(value), nullptr);
|
||||
}
|
||||
|
||||
// Gotthard Specific
|
||||
|
||||
slsDetectorDefs::ROI Module::getROI() const {
|
||||
|
Reference in New Issue
Block a user