Changeset 991 for trunk/MagicSoft/Mars/meventdisp/MGFadcDisp.cc
- Timestamp:
- 10/26/01 10:11:30 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/meventdisp/MGFadcDisp.cc
r961 r991 125 125 // preprocess eventloop and read in first event (process) 126 126 // 127 fEvtLoop->PreProcess(); 128 GetTaskList()->Process(); 127 fInitOk = fEvtLoop->PreProcess(); 128 129 if (fInitOk) 130 GetTaskList()->Process(); 129 131 130 132 // … … 168 170 { 169 171 MRawEvtData *data = GetEvent(); 172 173 if (!data) 174 return; 170 175 171 176 MRawEvtPixelIter pixel(data); … … 215 220 void MGFadcDisp::UpdateDisplay() 216 221 { 222 if (!fInitOk) 223 return; 224 217 225 const Int_t lastsel = fPixelList->GetSelected(); 218 226
Note:
See TracChangeset
for help on using the changeset viewer.