Changeset 15281


Ignore:
Timestamp:
04/08/13 14:27:49 (12 years ago)
Author:
tbretz
Message:
Send a report if incomplete events oocur.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/EventBuilderWrapper.h

    r15192 r15281  
    104104    DimDescribedService fDimStatistics2;
    105105    DimDescribedService fDimFileFormat;
     106    DimDescribedService fDimIncomplete;
    106107
    107108    bool fDebugStream;
     
    258259                                                           "|runStat[int]:number of run opened, closed, with open or close errors"
    259260                                                           "|numConn[int]:number of sockets successfully opened per board"),
    260         fDimFileFormat  ("FAD_CONTROL/FILE_FORMAT",        "S:1",  ""),
     261        fDimFileFormat("FAD_CONTROL/FILE_FORMAT",          "S:1",  "format[int]:Current file format"),
     262        fDimIncomplete("FAD_CONTROL/INCOMPLETE",           "X:1", "incomplete[bits]:One bit per board"),
    261263        fDebugStream(false), fDebugRead(false), fDebugLog(false), fNightAsInt(0)
    262264    {
     
    12151217    }
    12161218
     1219    void factReportIncomplete(uint64_t rep)
     1220    {
     1221        fDimIncomplete.Update(rep);
     1222    }
    12171223
    12181224    array<FAD::EventHeader, 40> fVecHeader;
     
    15261532    }
    15271533
     1534    void factReportIncomplete (uint64_t rep)
     1535    {
     1536        EventBuilderWrapper::This->factReportIncomplete(rep);
     1537    }
     1538
    15281539    // ------
    15291540
Note: See TracChangeset for help on using the changeset viewer.