mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 18:17:59 +02:00
Fixed build of the moenchZmqExecutables (#706)
* changed to pure virtual methods for Clone and setClusterSize * added std:: * added moench to the github actions build
This commit is contained in:
@ -220,7 +220,7 @@ template <class dataType> class analogDetector {
|
||||
clone. Must be virtual!
|
||||
\returns a clone of the original analog detector
|
||||
*/
|
||||
virtual analogDetector *Clone() { return new analogDetector(this); }
|
||||
virtual analogDetector *Clone() = 0;
|
||||
|
||||
/**
|
||||
Gives an id to the structure. For debugging purposes in case of
|
||||
@ -1097,8 +1097,7 @@ template <class dataType> class analogDetector {
|
||||
return thr;
|
||||
};
|
||||
|
||||
virtual int setClusterSize(int n = -1) {
|
||||
};
|
||||
virtual int setClusterSize(int n = -1) = 0;
|
||||
|
||||
/**
|
||||
gets threshold value for conversion into number of photons
|
||||
|
Reference in New Issue
Block a user