Changeset 15441 for trunk/FACT++/src
- Timestamp:
- 04/25/13 19:49:57 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/EventBuilder.c
r15428 r15441 1770 1770 1771 1771 //and clear all buffers (might have to wait until all others are done) 1772 // If minclear is 0, an event could be deleted while writing is still ongoing 1773 /* 1772 1774 int minclear; 1773 1775 if (gi_resetR == 1) { … … 1777 1779 minclear = 0; 1778 1780 factPrintf(kInfo, -1, "Flush all buffers ..."); 1779 } 1781 }*/ 1782 const int minclear = 900; 1780 1783 1781 1784 int numclear = 1; … … 1991 1994 if (j >= MAX_RUN) { 1992 1995 factPrintf(kFatal, 901, "procEvt: Can not find run %d for event %d in %d", irun, ievt, id); 1996 // FIXME: The event has to be flagged such that it will be deleted! Although that should never happen 1997 continue; 1993 1998 } 1994 1999 lastRun = j; … … 2018 2023 // actRun.NroiTM = 0; 2019 2024 actRun.RunTime = runCtrl[j].firstTime; 2020 actRun.RunUsec = runCtrl[j].first Time;2025 actRun.RunUsec = runCtrl[j].firstUsec; 2021 2026 actRun.NBoard = NBOARDS; 2022 2027 actRun.NPix = NPIX; … … 2334 2339 // actRun.NroiTM = 0; 2335 2340 actRun.RunTime = runCtrl[j].firstTime; 2336 actRun.RunUsec = runCtrl[j].first Time;2341 actRun.RunUsec = runCtrl[j].firstUsec; 2337 2342 actRun.NBoard = NBOARDS; 2338 2343 actRun.NPix = NPIX;
Note:
See TracChangeset
for help on using the changeset viewer.