Ignore:
Timestamp:
05/11/09 21:49:57 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/cosy.cc

    r9439 r9443  
    115115    // Evaluate arguments
    116116    //
    117     MArgs arg(argc, argv, kTRUE);
     117    MArgs arg(argc, argv);
    118118    gLog.Setup(arg);
    119119
     
    131131    const Bool_t  kDebugMem     = arg.HasOnlyAndRemove("--debug-mem");
    132132    const Bool_t  kDebugThreads = arg.HasOnlyAndRemove("--debug-threads");
    133     const Int_t   ceco_tx       = arg.GetIntAndRemove("--cc-tx=", 7314);//7304);
    134     const Int_t   ceco_rx       = arg.GetIntAndRemove("--cc-rx=", 7414);//7404);
    135133    const TString kConfig       = arg.GetStringAndRemove("--config=", ".cosyrc"); // ceco
    136134    Int_t  kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0;
     
    160158    const Int_t   channel     = env.GetValue("DefaultCameraChannel", 0);
    161159    const TString sps         = env.GetValue("IpAddressSPS", "sps");
    162     const TString ceco        = env.GetValue("IpAddressCentralControl", "161.72.130.60");
     160    const TString ceco        = env.GetValue("IpAddressCentralControl", "161.72.130.2");
     161    const Int_t   ceco_rx     = env.GetValue("PortCentralControlRX", 7404);
     162    const Int_t   ceco_tx     = env.GetValue("PortCentralControlTX", 7304);
    163163    const TString powerswitch = env.GetValue("IpAddressPowerSwitch", "");
    164164    const Int_t   telescope   = env.GetValue("Telescope", 1);
     
    214214    if (kDebugMem)
    215215        TObject::SetObjectStat(kTRUE);
     216
     217    // Check if a connection can be established
     218    const Int_t save = gDebug;
     219    gDebug = 1;
     220    TSocket test(sps, 5357);
     221    gDebug = save;
     222    test.Close();
    216223
    217224    //
Note: See TracChangeset for help on using the changeset viewer.