got rid of sending to detector for sending via cpu flag . not needed for eiger

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@795 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
l_maliakal_d 2014-03-18 16:43:09 +00:00
parent ecab716f0a
commit b6d18131e8

View File

@ -6046,7 +6046,7 @@ int slsDetector::startReceiver(){
setErrorMask((getErrorMask())|(COULDNOT_START_RECEIVER));
}
}
if(ret==OK)
if((ret==OK)&& (thisDetector->myDetectorType != EIGER))
ret=detectorSendToReceiver(true);
return ret;
@ -6060,7 +6060,8 @@ int slsDetector::stopReceiver(){
int ret = FAIL;
char mess[] = "";
detectorSendToReceiver(false);
if(thisDetector->myDetectorType != EIGER)
detectorSendToReceiver(false);
if (setReceiverOnline(ONLINE_FLAG)==ONLINE_FLAG) {
#ifdef VERBOSE