Changeset 11577


Ignore:
Timestamp:
07/24/11 21:11:43 (13 years ago)
Author:
tbretz
Message:
Moved Dim:Setup to Main::execute
Location:
trunk/FACT++/src
Files:
9 edited

Legend:

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

    r11575 r11577  
    4343    int execute(Configuration &conf, bool dummy=false)
    4444    {
     45        Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
     46
     47        // -----------------------------------------------------------------
     48
    4549        static T shell(conf.GetName().c_str(),
    4650                   conf.Has("console") ? conf.Get<int>("console")!=1 : 0);
  • trunk/FACT++/src/biasctrl.cc

    r11575 r11577  
    649649    }
    650650
    651     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    652 
    653651    //try
    654652    {
  • trunk/FACT++/src/datalogger.cc

    r11575 r11577  
    24952495    }
    24962496
    2497     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    2498 
    24992497//    try
    25002498    {
  • trunk/FACT++/src/drivectrl.cc

    r11575 r11577  
    10261026    }
    10271027
    1028     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    1029 
    10301028    //try
    10311029    {
  • trunk/FACT++/src/fadctrl.cc

    r11575 r11577  
    20962096    }
    20972097
    2098     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    2099 
    21002098//    try
    21012099    {
  • trunk/FACT++/src/fscctrl.cc

    r11575 r11577  
    615615    }
    616616
    617     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    618 
    619617    //try
    620618    {
  • trunk/FACT++/src/ftmctrl.cc

    r11575 r11577  
    24712471    }
    24722472
    2473     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    2474 
    24752473    //try
    24762474    {
  • trunk/FACT++/src/mcp.cc

    r11575 r11577  
    505505    }
    506506
    507     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    508 
    509507    //try
    510508    {
  • trunk/FACT++/src/scheduler.cc

    r11575 r11577  
    799799    }
    800800
    801     if (conf.HasVersion() || conf.HasPrint())
    802         return -1;
    803 
    804     if (conf.HasHelp())
    805     {
    806         PrintHelp();
    807         return -1;
    808     }
    809 
    810     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    811 
    812801//    try
    813802    {
Note: See TracChangeset for help on using the changeset viewer.