mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-12 12:57:13 +02:00
removed typedef for shared struct
This commit is contained in:
@ -7,10 +7,10 @@
|
|||||||
* @short This is the base class for multi detector system functionalities
|
* @short This is the base class for multi detector system functionalities
|
||||||
* @author Anna Bergamaschi
|
* @author Anna Bergamaschi
|
||||||
*/
|
*/
|
||||||
|
#include "SharedMemory.h"
|
||||||
#include "error_defs.h"
|
#include "error_defs.h"
|
||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
#include "sls_detector_defs.h"
|
#include "sls_detector_defs.h"
|
||||||
#include "SharedMemory.h"
|
|
||||||
class slsDetector;
|
class slsDetector;
|
||||||
// class SharedMemory;
|
// class SharedMemory;
|
||||||
class ZmqSocket;
|
class ZmqSocket;
|
||||||
@ -27,94 +27,91 @@ class detectorData;
|
|||||||
#define SHORT_STRING_LENGTH 50
|
#define SHORT_STRING_LENGTH 50
|
||||||
#define DATE_LENGTH 30
|
#define DATE_LENGTH 30
|
||||||
|
|
||||||
|
/**
|
||||||
/**
|
|
||||||
* @short structure allocated in shared memory to store detector settings
|
* @short structure allocated in shared memory to store detector settings
|
||||||
* for IPC and cache
|
* for IPC and cache
|
||||||
*/
|
*/
|
||||||
typedef struct sharedMultiSlsDetector {
|
struct sharedMultiSlsDetector {
|
||||||
|
|
||||||
/* FIXED PATTERN FOR STATIC FUNCTIONS. DO NOT CHANGE, ONLY APPEND
|
/* FIXED PATTERN FOR STATIC FUNCTIONS. DO NOT CHANGE, ONLY APPEND
|
||||||
* ------*/
|
* ------*/
|
||||||
|
|
||||||
/** shared memory version */
|
/** shared memory version */
|
||||||
int shmversion;
|
int shmversion;
|
||||||
|
|
||||||
/** last process id accessing the shared memory */
|
/** last process id accessing the shared memory */
|
||||||
pid_t lastPID;
|
pid_t lastPID;
|
||||||
|
|
||||||
/** last user name accessing the shared memory */
|
/** last user name accessing the shared memory */
|
||||||
char lastUser[SHORT_STRING_LENGTH];
|
char lastUser[SHORT_STRING_LENGTH];
|
||||||
|
|
||||||
/** last time stamp when accessing the shared memory */
|
/** last time stamp when accessing the shared memory */
|
||||||
char lastDate[SHORT_STRING_LENGTH];
|
char lastDate[SHORT_STRING_LENGTH];
|
||||||
|
|
||||||
/** number of sls detectors in shared memory */
|
/** number of sls detectors in shared memory */
|
||||||
int numberOfDetectors;
|
int numberOfDetectors;
|
||||||
|
|
||||||
/** END OF FIXED PATTERN
|
/** END OF FIXED PATTERN
|
||||||
* -----------------------------------------------*/
|
* -----------------------------------------------*/
|
||||||
|
|
||||||
/** Number of detectors operated at once */
|
/** Number of detectors operated at once */
|
||||||
int numberOfDetector[2];
|
int numberOfDetector[2];
|
||||||
|
|
||||||
/** online flag - is set if the detector is connected, unset if socket
|
/** online flag - is set if the detector is connected, unset if socket
|
||||||
* connection is not possible */
|
* connection is not possible */
|
||||||
int onlineFlag;
|
int onlineFlag;
|
||||||
|
|
||||||
/** stopped flag - is set if an acquisition error occurs or the detector
|
/** stopped flag - is set if an acquisition error occurs or the detector
|
||||||
* is stopped manually. Is reset to 0 at the start of the acquisition */
|
* is stopped manually. Is reset to 0 at the start of the acquisition */
|
||||||
int stoppedFlag;
|
int stoppedFlag;
|
||||||
|
|
||||||
/** size of the data that are transfered from all detectors */
|
/** size of the data that are transfered from all detectors */
|
||||||
int dataBytes;
|
int dataBytes;
|
||||||
|
|
||||||
/** data bytes including gap pixels transferred from all detectors */
|
/** data bytes including gap pixels transferred from all detectors */
|
||||||
int dataBytesInclGapPixels;
|
int dataBytesInclGapPixels;
|
||||||
|
|
||||||
/** total number of channels for all detectors */
|
/** total number of channels for all detectors */
|
||||||
int numberOfChannels;
|
int numberOfChannels;
|
||||||
|
|
||||||
/** total number of channels for all detectors in one dimension*/
|
/** total number of channels for all detectors in one dimension*/
|
||||||
int numberOfChannel[2];
|
int numberOfChannel[2];
|
||||||
|
|
||||||
/** total number of channels including gap pixels in one dimension */
|
/** total number of channels including gap pixels in one dimension */
|
||||||
int numberOfChannelInclGapPixels[2];
|
int numberOfChannelInclGapPixels[2];
|
||||||
|
|
||||||
/** total number of channels for all detectors */
|
/** total number of channels for all detectors */
|
||||||
int maxNumberOfChannels;
|
int maxNumberOfChannels;
|
||||||
|
|
||||||
/** max number of channels for all detectors in one dimension*/
|
/** max number of channels for all detectors in one dimension*/
|
||||||
int maxNumberOfChannel[2];
|
int maxNumberOfChannel[2];
|
||||||
|
|
||||||
/** max number of channels including gap pixels for all detectors in
|
/** max number of channels including gap pixels for all detectors in
|
||||||
* one dimension*/
|
* one dimension*/
|
||||||
int maxNumberOfChannelInclGapPixels[2];
|
int maxNumberOfChannelInclGapPixels[2];
|
||||||
|
|
||||||
/** max number of channels allowed for the complete set of detectors in
|
/** max number of channels allowed for the complete set of detectors in
|
||||||
* one dimension */
|
* one dimension */
|
||||||
int maxNumberOfChannelsPerDetector[2];
|
int maxNumberOfChannelsPerDetector[2];
|
||||||
|
|
||||||
/** timer values */
|
/** timer values */
|
||||||
int64_t timerValue[slsDetectorDefs::timerIndex::MAX_TIMERS];
|
int64_t timerValue[slsDetectorDefs::timerIndex::MAX_TIMERS];
|
||||||
|
|
||||||
/** flag for acquiring */
|
/** flag for acquiring */
|
||||||
bool acquiringFlag;
|
bool acquiringFlag;
|
||||||
|
|
||||||
/** receiver online flag - is set if the receiver is connected,
|
/** receiver online flag - is set if the receiver is connected,
|
||||||
* unset if socket connection is not possible */
|
* unset if socket connection is not possible */
|
||||||
int receiverOnlineFlag;
|
int receiverOnlineFlag;
|
||||||
|
|
||||||
/** data streaming (up stream) enable in receiver */
|
/** data streaming (up stream) enable in receiver */
|
||||||
bool receiver_upstream;
|
bool receiver_upstream;
|
||||||
|
};
|
||||||
} sharedMultiSlsDetector;
|
|
||||||
|
|
||||||
class multiSlsDetector : public virtual slsDetectorDefs,
|
class multiSlsDetector : public virtual slsDetectorDefs,
|
||||||
public virtual errorDefs {
|
public virtual errorDefs {
|
||||||
|
|
||||||
// private:
|
// private:
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
@ -234,7 +231,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @returns FAIL for incompatibility, OK for compatibility
|
* @returns FAIL for incompatibility, OK for compatibility
|
||||||
*/
|
*/
|
||||||
int checkReceiverVersionCompatibility(int detPos = -1);
|
int checkReceiverVersionCompatibility(int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get ID or version numbers
|
* Get ID or version numbers
|
||||||
* @param mode version type
|
* @param mode version type
|
||||||
@ -436,15 +433,13 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
*/
|
*/
|
||||||
int setStopPort(int port_number = -1, int detPos = -1);
|
int setStopPort(int port_number = -1, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set/Gets TCP Port of the receiver
|
* Set/Gets TCP Port of the receiver
|
||||||
* @param port_number (-1 gets)
|
* @param port_number (-1 gets)
|
||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns port number
|
* @returns port number
|
||||||
*/
|
*/
|
||||||
int setReceiverPort(int port_number = -1, int detPos = -1);
|
int setReceiverPort(int port_number = -1, int detPos = -1);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lock server for this client IP
|
* Lock server for this client IP
|
||||||
@ -474,7 +469,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns OK or FAIL
|
* @returns OK or FAIL
|
||||||
*/
|
*/
|
||||||
int execCommand(const std::string& cmd, int detPos);
|
int execCommand(const std::string &cmd, int detPos);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load configuration from a configuration File
|
* Load configuration from a configuration File
|
||||||
@ -545,7 +540,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the trimbit/settings directory
|
* @returns the trimbit/settings directory
|
||||||
*/
|
*/
|
||||||
std::string setSettingsDir(const std::string& directory, int detPos = -1);
|
std::string setSettingsDir(const std::string &directory, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the modules settings/trimbits reading from a specific file
|
* Loads the modules settings/trimbits reading from a specific file
|
||||||
@ -554,7 +549,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* returns OK or FAIL
|
* returns OK or FAIL
|
||||||
*/
|
*/
|
||||||
int loadSettingsFile(const std::string& fname, int detPos = -1);
|
int loadSettingsFile(const std::string &fname, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Saves the modules settings/trimbits to a specific file
|
* Saves the modules settings/trimbits to a specific file
|
||||||
@ -563,7 +558,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* returns OK or FAIL
|
* returns OK or FAIL
|
||||||
*/
|
*/
|
||||||
int saveSettingsFile(const std::string& fname, int detPos = -1);
|
int saveSettingsFile(const std::string &fname, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get Detector run status
|
* Get Detector run status
|
||||||
@ -872,7 +867,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the detector MAC address
|
* @returns the detector MAC address
|
||||||
*/
|
*/
|
||||||
std::string setDetectorMAC(const std::string& detectorMAC, int detPos = -1);
|
std::string setDetectorMAC(const std::string &detectorMAC, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the detector MAC address
|
* Returns the detector MAC address
|
||||||
@ -887,7 +882,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the detector IP address
|
* @returns the detector IP address
|
||||||
*/
|
*/
|
||||||
std::string setDetectorIP(const std::string& detectorIP, int detPos = -1);
|
std::string setDetectorIP(const std::string &detectorIP, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the detector IP address
|
* Returns the detector IP address
|
||||||
@ -904,7 +899,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the receiver IP address from shared memory
|
* @returns the receiver IP address from shared memory
|
||||||
*/
|
*/
|
||||||
std::string setReceiver(const std::string& receiver, int detPos = -1);
|
std::string setReceiver(const std::string &receiver, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver IP address
|
* Returns the receiver IP address
|
||||||
@ -919,7 +914,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the receiver UDP IP address
|
* @returns the receiver UDP IP address
|
||||||
*/
|
*/
|
||||||
std::string setReceiverUDPIP(const std::string& udpip, int detPos = -1);
|
std::string setReceiverUDPIP(const std::string &udpip, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver UDP IP address
|
* Returns the receiver UDP IP address
|
||||||
@ -934,7 +929,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the receiver UDP MAC address
|
* @returns the receiver UDP MAC address
|
||||||
*/
|
*/
|
||||||
std::string setReceiverUDPMAC(const std::string& udpmac, int detPos = -1);
|
std::string setReceiverUDPMAC(const std::string &udpmac, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver UDP MAC address
|
* Returns the receiver UDP MAC address
|
||||||
@ -951,7 +946,6 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
*/
|
*/
|
||||||
int setReceiverUDPPort(int udpport, int detPos = -1);
|
int setReceiverUDPPort(int udpport, int detPos = -1);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver UDP port
|
* Returns the receiver UDP port
|
||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
@ -984,13 +978,13 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
*/
|
*/
|
||||||
void setClientDataStreamingInPort(int i = -1, int detPos = -1);
|
void setClientDataStreamingInPort(int i = -1, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the client zmq port
|
* Returns the client zmq port
|
||||||
* If detPos is -1(multi module), port returns client streaming port of first module
|
* If detPos is -1(multi module), port returns client streaming port of first module
|
||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the client zmq port
|
* @returns the client zmq port
|
||||||
*/
|
*/
|
||||||
int getClientStreamingPort(int detPos = -1);
|
int getClientStreamingPort(int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (advanced users)
|
* (advanced users)
|
||||||
@ -1002,13 +996,13 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
*/
|
*/
|
||||||
void setReceiverDataStreamingOutPort(int i = -1, int detPos = -1);
|
void setReceiverDataStreamingOutPort(int i = -1, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver zmq port
|
* Returns the receiver zmq port
|
||||||
* If detPos is -1(multi module), port returns receiver streaming port of first module
|
* If detPos is -1(multi module), port returns receiver streaming port of first module
|
||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the receiver zmq port
|
* @returns the receiver zmq port
|
||||||
*/
|
*/
|
||||||
int getReceiverStreamingPort(int detPos = -1);
|
int getReceiverStreamingPort(int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (advanced users)
|
* (advanced users)
|
||||||
@ -1017,8 +1011,8 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* By default, it is the IP of receiver hostname
|
* By default, it is the IP of receiver hostname
|
||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
*/
|
*/
|
||||||
void setClientDataStreamingInIP(const std::string& ip = "",
|
void setClientDataStreamingInIP(const std::string &ip = "",
|
||||||
int detPos = -1);
|
int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the client zmq ip
|
* Returns the client zmq ip
|
||||||
@ -1026,7 +1020,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the client zmq ip
|
* @returns the client zmq ip
|
||||||
*/
|
*/
|
||||||
std::string getClientStreamingIP(int detPos = -1);
|
std::string getClientStreamingIP(int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (advanced users)
|
* (advanced users)
|
||||||
@ -1035,8 +1029,8 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* By default, it is the IP of receiver hostname
|
* By default, it is the IP of receiver hostname
|
||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
*/
|
*/
|
||||||
void setReceiverDataStreamingOutIP(const std::string& ip = "",
|
void setReceiverDataStreamingOutIP(const std::string &ip = "",
|
||||||
int detPos = -1);
|
int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver zmq ip
|
* Returns the receiver zmq ip
|
||||||
@ -1044,7 +1038,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the receiver zmq ip
|
* @returns the receiver zmq ip
|
||||||
*/
|
*/
|
||||||
std::string getReceiverStreamingIP(int detPos = -1);
|
std::string getReceiverStreamingIP(int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the transmission delay for left, right or entire frame
|
* Sets the transmission delay for left, right or entire frame
|
||||||
@ -1062,7 +1056,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns additional json header, default is empty
|
* @returns additional json header, default is empty
|
||||||
*/
|
*/
|
||||||
std::string setAdditionalJsonHeader(const std::string& jsonheader, int detPos = -1);
|
std::string setAdditionalJsonHeader(const std::string &jsonheader, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the additional json header
|
* Returns the additional json header
|
||||||
@ -1079,7 +1073,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @returns the additional json header parameter value,
|
* @returns the additional json header parameter value,
|
||||||
* empty if no parameter found in additional json header
|
* empty if no parameter found in additional json header
|
||||||
*/
|
*/
|
||||||
std::string setAdditionalJsonParameter(const std::string& key, const std::string& value, int detPos = -1);
|
std::string setAdditionalJsonParameter(const std::string &key, const std::string &value, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the additional json header parameter value
|
* Returns the additional json header parameter value
|
||||||
@ -1088,7 +1082,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @returns the additional json header parameter value,
|
* @returns the additional json header parameter value,
|
||||||
* empty if no parameter found in additional json header
|
* empty if no parameter found in additional json header
|
||||||
*/
|
*/
|
||||||
std::string getAdditionalJsonParameter(const std::string& key, int detPos = -1);
|
std::string getAdditionalJsonParameter(const std::string &key, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the detector minimum/maximum energy threshold in processor (for Moench only)
|
* Sets the detector minimum/maximum energy threshold in processor (for Moench only)
|
||||||
@ -1120,14 +1114,14 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns receiver udp socket buffer size
|
* @returns receiver udp socket buffer size
|
||||||
*/
|
*/
|
||||||
uint64_t setReceiverUDPSocketBufferSize(uint64_t udpsockbufsize=-1, int detPos = -1);
|
uint64_t setReceiverUDPSocketBufferSize(uint64_t udpsockbufsize = -1, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver UDP socket buffer size
|
* Returns the receiver UDP socket buffer size
|
||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns the receiver UDP socket buffer size
|
* @returns the receiver UDP socket buffer size
|
||||||
*/
|
*/
|
||||||
uint64_t getReceiverUDPSocketBufferSize(int detPos = -1) ;
|
uint64_t getReceiverUDPSocketBufferSize(int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the receiver real UDP socket buffer size
|
* Returns the receiver real UDP socket buffer size
|
||||||
@ -1363,7 +1357,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns OK or FAIL
|
* @returns OK or FAIL
|
||||||
*/
|
*/
|
||||||
int programFPGA(const std::string& fname, int detPos = -1);
|
int programFPGA(const std::string &fname, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resets FPGA (Jungfrau)
|
* Resets FPGA (Jungfrau)
|
||||||
@ -1464,7 +1458,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns OK or FAIL
|
* @returns OK or FAIL
|
||||||
*/
|
*/
|
||||||
int execReceiverCommand(const std::string& cmd, int detPos = -1);
|
int execReceiverCommand(const std::string &cmd, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns output file directory
|
* Returns output file directory
|
||||||
@ -1479,7 +1473,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param s file directory
|
* @param s file directory
|
||||||
* @returns file dir
|
* @returns file dir
|
||||||
*/
|
*/
|
||||||
std::string setFilePath(const std::string& path, int detPos = -1);
|
std::string setFilePath(const std::string &path, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns file name prefix
|
* Returns file name prefix
|
||||||
@ -1494,7 +1488,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param s file name prefix
|
* @param s file name prefix
|
||||||
* @returns file name prefix
|
* @returns file name prefix
|
||||||
*/
|
*/
|
||||||
std::string setFileName(const std::string& fname, int detPos = -1);
|
std::string setFileName(const std::string &fname, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the max frames per file in receiver
|
* Sets the max frames per file in receiver
|
||||||
@ -1696,7 +1690,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @param detPos -1 for all detectors in list or specific detector position
|
* @param detPos -1 for all detectors in list or specific detector position
|
||||||
* @returns OK/FAIL
|
* @returns OK/FAIL
|
||||||
*/
|
*/
|
||||||
int setPattern(const std::string& fname, int detPos = -1);
|
int setPattern(const std::string &fname, int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Writes a pattern word to the CTB
|
* Writes a pattern word to the CTB
|
||||||
@ -1718,7 +1712,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* @returns OK/FAIL
|
* @returns OK/FAIL
|
||||||
*/
|
*/
|
||||||
int setPatternLoops(int level, int &start, int &stop, int &n,
|
int setPatternLoops(int level, int &start, int &stop, int &n,
|
||||||
int detPos = -1);
|
int detPos = -1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the wait address in the CTB
|
* Sets the wait address in the CTB
|
||||||
@ -1900,7 +1894,7 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
* Add sls detector
|
* Add sls detector
|
||||||
* @param s hostname of the single detector
|
* @param s hostname of the single detector
|
||||||
*/
|
*/
|
||||||
void addSlsDetector(const std::string& hostname);
|
void addSlsDetector(const std::string &hostname);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* add gap pixels to the image (only for Eiger in 4 bit mode)
|
* add gap pixels to the image (only for Eiger in 4 bit mode)
|
||||||
@ -1966,14 +1960,13 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
int detId;
|
int detId;
|
||||||
|
|
||||||
/** Shared Memory object */
|
/** Shared Memory object */
|
||||||
SharedMemory<sharedMultiSlsDetector> sharedMemory{0,-1};
|
SharedMemory<sharedMultiSlsDetector> sharedMemory{0, -1};
|
||||||
|
|
||||||
|
|
||||||
/** pointers to the slsDetector structures */
|
/** pointers to the slsDetector structures */
|
||||||
std::vector<std::unique_ptr<slsDetector>> detectors;
|
std::vector<std::unique_ptr<slsDetector>> detectors;
|
||||||
|
|
||||||
/** data streaming (down stream) enabled in client (zmq sckets created) */
|
/** data streaming (down stream) enabled in client (zmq sckets created) */
|
||||||
bool client_downstream {false};
|
bool client_downstream{false};
|
||||||
|
|
||||||
/** ZMQ Socket - Receiver to Client */
|
/** ZMQ Socket - Receiver to Client */
|
||||||
std::vector<std::unique_ptr<ZmqSocket>> zmqSocket;
|
std::vector<std::unique_ptr<ZmqSocket>> zmqSocket;
|
||||||
@ -1987,10 +1980,10 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
sem_t sem_endRTAcquisition;
|
sem_t sem_endRTAcquisition;
|
||||||
|
|
||||||
/** Total number of frames/images for next acquisition */
|
/** Total number of frames/images for next acquisition */
|
||||||
int totalProgress {0};
|
int totalProgress{0};
|
||||||
|
|
||||||
/** Current progress or frames/images processed in current acquisition */
|
/** Current progress or frames/images processed in current acquisition */
|
||||||
int progressIndex {0};
|
int progressIndex{0};
|
||||||
|
|
||||||
/** mutex to synchronize main and data processing threads */
|
/** mutex to synchronize main and data processing threads */
|
||||||
mutable std::mutex mp;
|
mutable std::mutex mp;
|
||||||
@ -1999,26 +1992,26 @@ class multiSlsDetector : public virtual slsDetectorDefs,
|
|||||||
mutable std::mutex mg;
|
mutable std::mutex mg;
|
||||||
|
|
||||||
/** sets when the acquisition is finished */
|
/** sets when the acquisition is finished */
|
||||||
bool jointhread {false};
|
bool jointhread{false};
|
||||||
|
|
||||||
/** the data processing thread */
|
/** the data processing thread */
|
||||||
// pthread_t dataProcessingThread;
|
// pthread_t dataProcessingThread;
|
||||||
std::thread dataProcessingThread;
|
std::thread dataProcessingThread;
|
||||||
|
|
||||||
/** detector data packed for the gui */
|
/** detector data packed for the gui */
|
||||||
detectorData *thisData {nullptr};
|
detectorData *thisData{nullptr};
|
||||||
|
|
||||||
int (*acquisition_finished)(double, int, void *) {nullptr};
|
int (*acquisition_finished)(double, int, void *){nullptr};
|
||||||
void *acqFinished_p {nullptr};
|
void *acqFinished_p{nullptr};
|
||||||
|
|
||||||
int (*measurement_finished)(int, int, void *) {nullptr};
|
int (*measurement_finished)(int, int, void *){nullptr};
|
||||||
void *measFinished_p {nullptr};
|
void *measFinished_p{nullptr};
|
||||||
|
|
||||||
int (*progress_call)(double, void *);
|
int (*progress_call)(double, void *);
|
||||||
void *pProgressCallArg {nullptr};
|
void *pProgressCallArg{nullptr};
|
||||||
|
|
||||||
int (*dataReady)(detectorData *, int, int, void *){nullptr};
|
int (*dataReady)(detectorData *, int, int, void *){nullptr};
|
||||||
void *pCallbackArg {nullptr};
|
void *pCallbackArg{nullptr};
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user