Ignore:
Timestamp:
04/28/03 11:04:17 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/candrv/nodedrv.cc

    r1959 r2019  
    490490// least one Nodeguard message was answered.
    491491//
    492 void NodeDrv::StartGuarding()
     492void NodeDrv::StartGuarding(Bool_t real=kTRUE)
    493493{
    494494    if (fTimerOn)
    495495        return;
    496496
    497     SendNodeguard();
     497    if (!real)
     498        SendNodeguard();
    498499
    499500    fTimerOn = kTRUE;
     
    512513}
    513514
    514 void NodeDrv::StartGuarding(Int_t ms, Int_t ltf)
     515void NodeDrv::StartGuarding(Int_t ms, Int_t ltf, Bool_t real)
    515516{
    516517    if (fTimerOn)
     
    522523    fLifeTimeFactor = ltf;
    523524
    524     StartGuarding();
     525    StartGuarding(real);
    525526}
    526527
Note: See TracChangeset for help on using the changeset viewer.