Changeset 12438 for trunk/FACT++


Ignore:
Timestamp:
11/07/11 00:05:27 (13 years ago)
Author:
tbretz
Message:
Do not check the Socket state and the BusyOn flag in the header when comparing it with the configuration, otherwise it will fail as soon as this is set as new configuration.
File:
1 edited

Legend:

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

    r12330 r12438  
    291291        {
    292292            return
    293                 fStatus == h.fStatus &&
     293                (fStatus&~(kSock17|kBusyOn)) == (h.fStatus&~(kSock17|kBusyOn)) &&
    294294                fRunNumber == h.fRunNumber &&
    295295                fEventCounter == h.fEventCounter &&
Note: See TracChangeset for help on using the changeset viewer.