got rid of some useless comments

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@553 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
l_maliakal_d 2013-05-15 14:16:41 +00:00
parent f36752028b
commit de03868f9f
2 changed files with 6 additions and 0 deletions

View File

@ -440,10 +440,14 @@ void slsDetectorUtils::acquire(int delflag){
// waiting for the data processing thread to finish! // waiting for the data processing thread to finish!
if (*threadedProcessing) { if (*threadedProcessing) {
#ifdef VERBOSE
cout << "wait for data processing thread" << endl; cout << "wait for data processing thread" << endl;
#endif
setJoinThread(1); setJoinThread(1);
pthread_join(dataProcessingThread, &status); pthread_join(dataProcessingThread, &status);
#ifdef VERBOSE
cout << "data processing thread joined" << endl; cout << "data processing thread joined" << endl;
#endif
} }

View File

@ -273,7 +273,9 @@ void postProcessing::doProcessing(double *lfdata, int delflag, string fname) {
int postProcessing::fillBadChannelMask() { int postProcessing::fillBadChannelMask() {
#ifdef VERBOSE
cout << "pp fill bad channel mask " << endl; cout << "pp fill bad channel mask " << endl;
#endif
int nbad=0, nb; int nbad=0, nb;
//#define VERBOSE //#define VERBOSE
if (*correctionMask&(1<< DISCARD_BAD_CHANNELS)) { if (*correctionMask&(1<< DISCARD_BAD_CHANNELS)) {