Changeset 19376 for trunk/FACT++/gui
- Timestamp:
- 11/11/18 14:44:12 (6 years ago)
- Location:
- trunk/FACT++/gui/RawEventsViewer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc
r19374 r19376 416 416 patchesColor[i][j] = color[j]; 417 417 } 418 fZeroArray = NULL;418 //fZeroArray = NULL; 419 419 420 420 _softwareOrdering = false; … … 430 430 delete inputFile; 431 431 } 432 if (fZeroArray != NULL) 433 delete[] fZeroArray; 434 } 432 //if (fZeroArray != NULL) 433 // delete[] fZeroArray; 434 } 435 /* 435 436 void RawDataViewer::allocateZeroArray() 436 437 { … … 440 441 } 441 442 } 443 */ 442 444 /************************************************************ 443 445 * PAINT GL. main drawing function. … … 949 951 emit signalCurrentPixel(pix); 950 952 } 953 /* 951 954 void RawDataViewer::computePulsesStatistics() 952 955 { … … 1019 1022 // } 1020 1023 } 1024 */ 1021 1025 /************************************************************ 1022 1026 * UICONNECTOR CONSTRUCTOR … … 1113 1117 threeD_Window->setData(GLWindow->eventData.data()); 1114 1118 1115 on_autoScaleColor_clicked(); 1119 if (autoScaleColor->isChecked()) 1120 on_autoScaleColor_clicked(); 1116 1121 pixelChanged(GLWindow->selectedPixel); 1117 1122 … … 2042 2047 2043 2048 displaySliceValue(); 2044 on_autoScaleColor_clicked(); 2049 if (autoScaleColor->isChecked()) 2050 on_autoScaleColor_clicked(); 2045 2051 } 2046 2052 -
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.h
r19373 r19376 101 101 102 102 ///Used to load zero data in case of missing fits columns 103 void allocateZeroArray();104 char* fZeroArray;103 //void allocateZeroArray(); 104 //char* fZeroArray; 105 105 //bool telling whether the data is natively ordered in software or hardware id 106 106 //used to correctly display monte-carlo data. … … 175 175 // float triggerOffsetMean[1440*1024]; 176 176 // bool calibrationLoaded; 177 bool drawCalibrationLoaded;177 // bool drawCalibrationLoaded; 178 178 179 179 QPoint lastPos; 180 180 public: 181 /* 181 182 void computePulsesStatistics(); 182 183 double aMeas[1024]; … … 184 185 double n2mean[1024]; 185 186 double vCorr[1024]; 187 */ 186 188 int64_t VALUES_SPAN; 187 189
Note:
See TracChangeset
for help on using the changeset viewer.