summaryrefslogtreecommitdiffstats
path: root/src/Detector/Detector.cpp
diff options
context:
space:
mode:
authorFrust, Tobias (FWCC) - 111645 <t.frust@hzdr.de>2017-11-03 08:46:48 +0100
committerFrust, Tobias (FWCC) - 111645 <t.frust@hzdr.de>2017-11-03 08:46:48 +0100
commitfa7a8dac30087d63e0c99b46ed6b0370d86304a8 (patch)
tree793dba3b90b233a89394240bdb12073364bcef33 /src/Detector/Detector.cpp
parent1f6a370a7e177265eeffc971dbe4934ebf62d02b (diff)
downloadods-fa7a8dac30087d63e0c99b46ed6b0370d86304a8.tar.gz
ods-fa7a8dac30087d63e0c99b46ed6b0370d86304a8.tar.bz2
ods-fa7a8dac30087d63e0c99b46ed6b0370d86304a8.tar.xz
ods-fa7a8dac30087d63e0c99b46ed6b0370d86304a8.zip
bug fixes
Diffstat (limited to 'src/Detector/Detector.cpp')
-rw-r--r--src/Detector/Detector.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Detector/Detector.cpp b/src/Detector/Detector.cpp
index 03abffe..5dde6d1 100644
--- a/src/Detector/Detector.cpp
+++ b/src/Detector/Detector.cpp
@@ -10,12 +10,12 @@
#include "Detector.h"
-Detector::Detector(const std::string& address, const std::string& configPath, const unsigned int timeIntervall, const int packetSize) :
+Detector::Detector(const std::string& address, const std::string& configPath, const unsigned int timeIntervall) :
timeIntervall_{timeIntervall},
numberOfDetectorModules_{27} {
modules_.reserve(numberOfDetectorModules_);
for(auto i = 0; i < numberOfDetectorModules_; i++){
- modules_.emplace_back(i, address, configPath, packetSize);
+ modules_.emplace_back(i, address, configPath);
}
}