Changeset 12831 for trunk/FACT++


Ignore:
Timestamp:
02/03/12 12:43:23 (13 years ago)
Author:
tbretz
Message:
Removed variables which were defined but never really used in any reasonable context
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/EventBuilder.c

    r12759 r12831  
    790790//(and make sure multiple calls do no harm ....)
    791791
    792    int headmem = 0;
     792//   int headmem = 0;
    793793   int evid;
    794    size_t freemem = 0;
     794//   size_t freemem = 0;
    795795
    796796   evid = mBuffer[i].evNum;
    797    freemem = mBuffer[i].evtLen;
     797//   freemem = mBuffer[i].evtLen;
    798798   //ETIENNE
    799799   ETI_Free(evid, i);
     
    807807   mBuffer[i].buffer = NULL;
    808808//END ETIENNE
    809    headmem = NBOARDS * sizeof (PEVNT_HEADER);
     809//   headmem = NBOARDS * sizeof (PEVNT_HEADER);
    810810   mBuffer[i].evNum = mBuffer[i].nRoi = -1;
    811811   mBuffer[i].runNum = 0;
     
    884884   int32_t jrd;
    885885   uint gi_SecTime;             //time in seconds
    886    int boardId, roi[9], drs, px, src, pixS, pixH, pixC, pixR, tmS;
     886   int boardId, roi[9], drs, px, src, pixS, /*pixH,*/ pixC, pixR, tmS;
    887887
    888888   int goodhed = 0;
     
    903903   factOut (kInfo, -1, str);
    904904
    905    int cpu = 7;                 //read thread
     905//   int cpu = 7;                 //read thread
    906906//   cpu_set_t mask;
    907907
     
    909909//   CPU_ZERO (&mask);
    910910/* CPU_SET sets only the bit corresponding to cpu. */
    911    cpu = 7;
     911//   cpu = 7;
    912912//   CPU_SET (cpu, &mask);
    913913
     
    12721272                  //get index into mBuffer for this event (create if needed)
    12731273
    1274                   int actid;
    1275                   if (g_useFTM > 0)
    1276                      actid = rd[i].evtID;
    1277                   else
    1278                      actid = rd[i].ftmID;
     1274//                  int actid;
     1275//                  if (g_useFTM > 0)
     1276//                     actid = rd[i].evtID;
     1277//                  else
     1278//                     actid = rd[i].ftmID;
    12791279
    12801280                  evID = mBufEvt (rd[i].evtID, rd[i].runID, roi, i,
     
    13461346                  for (px = 0; px < 9; px++) {  //different sort in FAD board.....
    13471347                     for (drs = 0; drs < 4; drs++) {
    1348                         pixH = rd[i].rBuf->S[src++];    // ID
     1348//                        pixH = rd[i].rBuf->S[src++];    // ID
    13491349                        pixC = rd[i].rBuf->S[src++];    // start-cell
    13501350                        pixR = rd[i].rBuf->S[src++];    // roi
     
    18991899
    19001900   pthread_t thread[100];
    1901    int th_ret[100];
     1901//   int th_ret[100];
    19021902
    19031903   for (long long k = 0; k < gi_maxProc; k++) {
    1904       th_ret[k] = pthread_create (&thread[k], NULL, subProc, (void *) k);
     1904      /*th_ret[k] =*/ pthread_create (&thread[k], NULL, subProc, (void *) k);
    19051905   }
    19061906
     
    24982498{
    24992499
    2500    int i, j, imax, status, th_ret[50];
     2500   int i, /*j,*/ imax, status/*, th_ret[50]*/;
    25012501   pthread_t thread[50];
    25022502   struct timespec xwait;
     
    25372537
    25382538   i = 0;
    2539    th_ret[i] = pthread_create (&thread[i], NULL, readFAD, NULL);
     2539   /*th_ret[i] =*/ pthread_create (&thread[i], NULL, readFAD, NULL);
    25402540   i++;
    2541    th_ret[i] = pthread_create (&thread[i], NULL, procEvt, NULL);
     2541   /*th_ret[i] =*/ pthread_create (&thread[i], NULL, procEvt, NULL);
    25422542   i++;
    2543    th_ret[i] = pthread_create (&thread[i], NULL, writeEvt, NULL);
     2543   /*th_ret[i] =*/ pthread_create (&thread[i], NULL, writeEvt, NULL);
    25442544   i++;
    25452545   imax = i;
     
    25672567//wait for all threads to finish
    25682568   for (i = 0; i < imax; i++) {
    2569       j = pthread_join (thread[i], (void **) &status);
     2569      /*j =*/ pthread_join (thread[i], (void **) &status);
    25702570   }
    25712571
  • trunk/FACT++/src/EventBuilderWrapper.h

    r12758 r12831  
    11311131        array<T, 42> arr;
    11321132
    1133         bool rc = true;
     1133        // bool rc = true;
    11341134        for (int i=0; i<40; i++)
    11351135        {
     
    11581158                max = ref;
    11591159
    1160             if (*val!=*ref)
    1161                 rc = false;
     1160            // if (*val!=*ref)
     1161            //     rc = false;
    11621162        }
    11631163
Note: See TracChangeset for help on using the changeset viewer.