bug fix: converts any receiver other than eiger into a jungfrau receiver

This commit is contained in:
Dhanya Maliakal 2016-02-25 12:11:05 +01:00
parent 5afb38c1ec
commit e508050be8

View File

@ -251,7 +251,7 @@ int UDPStandardImplementation::setupFifoStructure(){
int64_t i;
int oldNumberofJobsPerBuffer = numberofJobsPerBuffer;
//eiger always listens to 1 packet at a time
if((myDetectorType == EIGER) || (myDetectorType = JUNGFRAU)){
if((myDetectorType == EIGER) || (myDetectorType == JUNGFRAU)){
numberofJobsPerBuffer = 1;
FILE_LOG(logDEBUG) << "Info: 1 packet per buffer";
}