Changeset 11030 for trunk/FACT++/src/scheduler.cc
- Timestamp:
- 06/16/11 10:33:16 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/scheduler.cc
r11029 r11030 31 31 32 32 // things to be done/checked/changed 33 // * do not use --database, but sth like --database-scheduler 34 // to be independent of the configuration database 33 // * --schedule-database should be required 35 34 // * move definition of config parameters to AutoScheduler class 36 35 // + read in from config 36 // * in some (all?) loops iterator over vector can be replaced by counter 37 37 38 38 // other things to do … … 157 157 string fDatabase; 158 158 string fDBName; 159 int fDurationCalRun; //unit: minutes 160 int fDurationPedRun; //unit: minutes 161 int fDurationRepos; //unit: minutes 159 162 160 163 int Schedule() … … 162 165 bool error = false; 163 166 164 time_duration runtimec(0, 3, 0); 165 time_duration runtimep(0, 3, 0); 167 time_duration runtimec(0, fDurationCalRun, 0); 168 time_duration runtimep(0, fDurationPedRun, 0); 169 time_duration repostime(0, fDurationRepos, 0); 166 170 time_duration mintime(1, 0, 0); 167 time_duration repostime(0, 5, 0);168 //ptime startsched=microsec_clock::local_time();169 171 170 172 const ptime startsched(microsec_clock::local_time()); … … 716 718 { 717 719 fDatabase = conf.Get<string>("schedule-database"); 720 fDurationCalRun = conf.Get<int>("duration-cal-run"); 721 fDurationPedRun = conf.Get<int>("duration-ped-run"); 722 fDurationRepos = conf.Get<int>("duration-repos"); 718 723 719 724 return true; … … 809 814 , "Database link as in\n\t[user:[password]@][server][:port][/database]\nOverwrites options from the default configuration file.") 810 815 ("mintime", var<int>(), "minimum observation time") 816 ("duration-cal-run", var<int>() 817 #if BOOST_VERSION >= 104200 818 ->required() 819 #endif 820 , "duration of calibration run [min]") 821 ("duration-ped-run", var<int>() 822 #if BOOST_VERSION >= 104200 823 ->required() 824 #endif 825 , "duration of pedestal run [min]") 826 ("duration-repos", var<int>() 827 #if BOOST_VERSION >= 104200 828 ->required() 829 #endif 830 , "duration of repositioning [min]") 811 831 ; 812 832
Note:
See TracChangeset
for help on using the changeset viewer.