Changeset 19386 for trunk/FACT++
- Timestamp:
- 11/12/18 21:47:51 (6 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/biasctrl.cc
r18964 r19386 2262 2262 { 2263 2263 if (conf.Has("bias-map-file")) 2264 map.Read(conf.Get <string>("bias-map-file"));2264 map.Read(conf.GetPrefixedString("bias-map-file")); 2265 2265 2266 2266 //if (conf.Has("bias-database")) -
trunk/FACT++/src/drivectrl.cc
r19139 r19386 3044 3044 fDeviationMax = conf.Get<uint16_t>("deviation-max"); 3045 3045 3046 const string fname = conf.Get <string>("pointing.model-file");3046 const string fname = conf.GetPrefixedString("pointing.model-file"); 3047 3047 3048 3048 try -
trunk/FACT++/src/feedback.cc
r18975 r19386 1329 1329 fIsVerbose = !conf.Get<bool>("quiet"); 1330 1330 1331 if (!fMap.Read(conf.Get <string>("pixel-map-file")))1331 if (!fMap.Read(conf.GetPrefixedString("pixel-map-file"))) 1332 1332 { 1333 1333 Error("Reading mapping table from "+conf.Get<string>("pixel-map-file")+" failed."); -
trunk/FACT++/src/fscctrl.cc
r18959 r19386 859 859 fFSC.SetVerbose(!conf.Get<bool>("quiet")); 860 860 861 const string fname1 = conf.Get <string>("sensor-pos-file");861 const string fname1 = conf.GetPrefixedString("sensor-pos-file"); 862 862 const auto v1 = Interpolator2D::ReadGrid(fname1); 863 863 if (v1.size() != 31) … … 867 867 } 868 868 869 const string fname2 = conf.Get <string>("patch-pos-file");869 const string fname2 = conf.GetPrefixedString("patch-pos-file"); 870 870 const auto v2 = Interpolator2D::ReadGrid(fname2); 871 871 if (v2.size() != 320) -
trunk/FACT++/src/ratecontrol.cc
r18975 r19386 862 862 fVerbose = !conf.Get<bool>("quiet"); 863 863 864 if (!fMap.Read(conf.Get <string>("pixel-map-file")))864 if (!fMap.Read(conf.GetPrefixedString("pixel-map-file"))) 865 865 { 866 866 Error("Reading mapping table from "+conf.Get<string>("pixel-map-file")+" failed."); -
trunk/FACT++/src/smartfact.cc
r19380 r19386 3476 3476 int EvalOptions(Configuration &conf) 3477 3477 { 3478 if (!fPixelMap.Read(conf.Get <string>("pixel-map-file")))3478 if (!fPixelMap.Read(conf.GetPrefixedString("pixel-map-file"))) 3479 3479 { 3480 3480 Error("Reading mapping table from "+conf.Get<string>("pixel-map-file")+" failed.");
Note:
See TracChangeset
for help on using the changeset viewer.