added default gui server port number

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@479 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
l_maliakal_d 2013-03-01 13:14:47 +00:00
parent e3d68d05c6
commit 6aa90bba79
7 changed files with 7 additions and 10 deletions

View File

@ -76,6 +76,7 @@ using namespace std;
#define DEFAULT_PORTNO 1952
#define DEFAULT_BACKLOG 5
#define DEFAULT_UDP_PORTNO 50001
#define DEFAULT_GUI_PORTNO 65000
class genericSocket{

View File

@ -194,9 +194,6 @@ multiSlsDetector::multiSlsDetector(int id) : slsDetectorUtils(), shmId(-1)
}
thisMultiDetector->alreadyExisting=1;
}

View File

@ -191,7 +191,6 @@ class multiSlsDetector : public slsDetectorUtils {
mysteps scanSteps[MAX_SCAN_LEVELS];
int scanPrecision[MAX_SCAN_LEVELS];
};
@ -1188,6 +1187,7 @@ class multiSlsDetector : public slsDetectorUtils {
*/
int calibratePedestal(int frames = 0);
protected:

View File

@ -43,7 +43,7 @@ slsDetectorUtils::slsDetectorUtils() {
void slsDetectorUtils::acquire(int delflag){
bool receiver = (setReceiverOnline()==ONLINE_FLAG);
bool receiver = (setReceiverOnline()==ONLINE_FLAG);
// setTotalProgress();
//moved these 2 here for measurement change

View File

@ -703,6 +703,8 @@ virtual ROI* getROI(int &n)=0;
int (*measurement_finished)(int,int,void*);
void *acqFinished_p, *measFinished_p;
int (*progress_call)(double,void*);
void *pProgressCallArg;

View File

@ -257,9 +257,6 @@ private:
/** Receiver buffer */
char *mem0, *memfull;
/** latest data */
char* latestData;