General Purpose Geodetic Library
NsSetup.h
Go to the documentation of this file.
1 /*
2  *
3  * This file is a part of nuSolve. nuSolve is a part of CALC/SOLVE system
4  * and is designed to perform data analyis of a geodetic VLBI session.
5  * Copyright (C) 2010-2020 Sergei Bolotin.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef NS_SETUP_H
23 #define NS_SETUP_H
24 
25 
26 #ifdef HAVE_CONFIG_H
27 # include <config.h>
28 #endif
29 
30 
31 #include <QtCore/QString>
32 
33 
34 #include <SgGuiPlotter.h>
35 #include <SgIdentities.h>
36 #include <SgVlbiSessionInfo.h>
37 
38 
39 /***===================================================================================================*/
45 class NsSetup
46 {
47 public:
49  {
50  AS_NONE = 0,
52  AS_ALWAYS = 2,
53  };
54  //
55  // constructors/destructors:
56  //
59  NsSetup();
60 
64  virtual ~NsSetup();
65 
66 
67 
68  //
69  // Interfaces:
70  //
71  // gets:
74  inline const QString& getPath2Home() const;
75 
78  inline const QString& getPath2CatNuInterfaceExec() const;
79 
82  inline const QString& getPath2DbhFiles() const;
83 
86  inline const QString& getPath2VgosDbFiles() const;
87  inline const QString& getPath2VgosDaFiles() const {return path2VgosDaFiles_;};
88 
91  inline const QString& getPath2APrioriFiles() const;
92 
95  inline const QString& getPath2MasterFiles() const;
96 
99  inline const QString& getPath2SpoolFileOutput() const;
100 
101  inline const QString& getPath2NotUsedObsFileOutput() const;
102 
105  inline const QString& getPath2ReportOutput() const;
106 
109  inline const QString& getPath2NgsOutput() const;
110 
113  inline const QString& getPath2PlotterOutput() const;
114 
117  inline const QString& getPath2IntermediateResults() const;
118 
119  inline AutoSaving getAutoSavingMode() const;
120 
123  inline const QString& getPath2AuxLogs() const;
124 
127  inline bool getHave2SavePerSessionLog() const;
128 
131  inline bool getHave2UpdateCatalog() const;
132 
135  inline bool getHave2MaskSessionCode() const;
136 
139  inline bool getHave2KeepSpoolFileReports() const;
140 
143  inline bool getHave2LoadImmatureSession() const;
144 
147  inline const SgIdentities& getIdentities() const;
148 
151  inline SgIdentities& identities();
152 
153  inline bool getHave2WarnCloseWindow() const;
154 
155  inline bool getIsShortScreen() const;
156 
157  inline int getMainWinWidth() const;
158 
159  inline int getMainWinHeight() const;
160 
161  inline int getMainWinPosX() const;
162 
163  inline int getMainWinPosY() const;
164 
165  inline int getSeWinWidth() const;
166 
167  inline int getSeWinHeight() const;
168 
169  inline bool getHave2AutoloadAllBands() const;
170 
171  inline bool getIsBandPlotPerSrcView() const;
172 
174 
175  inline const QString& getLnfsFileName() const;
176 
178 
179  inline bool getLnfsIsThroughCatalog() const;
180 
181  inline bool getHave2SkipAutomaticProcessing() const;
182 
183  inline bool getHave2ForceAutomaticProcessing() const;
184 
185  inline bool getExecExternalCommand() const {return execExternalCommand_;};
186 
187  inline const QString& getExternalCommand() const {return externalCommand_;};
188 
189  //
190  // sets:
193  inline void setPath2Home(const QString&);
194 
197  inline void setPath2CatNuInterfaceExec(const QString&);
198 
201  inline void setPath2DbhFiles(const QString&);
202 
205  inline void setPath2VgosDbFiles(const QString&);
206  inline void setPath2VgosDaFiles(const QString& path) {path2VgosDaFiles_ = path;};
207 
210  inline void setPath2APrioriFiles(const QString&);
211 
214  inline void setPath2MasterFiles(const QString&);
215 
218  inline void setPath2SpoolFileOutput(const QString&);
219 
220  inline void setPath2NotUsedObsFileOutput(const QString&);
221 
224  inline void setPath2ReportOutput(const QString&);
225 
228  inline void setPath2NgsOutput(const QString&);
229 
232  inline void setPath2PlotterOutput(const QString&);
233 
236  inline void setPath2IntermediateResults(const QString&);
237 
238  inline void setAutoSavingMode(AutoSaving);
239 
242  inline void setPath2AuxLogs(const QString&);
243 
246  inline void setHave2SavePerSessionLog(bool);
247 
250  inline void setHave2UpdateCatalog(bool);
251 
254  inline void setHave2MaskSessionCode(bool);
255 
258  inline void setHave2KeepSpoolFileReports(bool);
259 
262  inline void setHave2LoadImmatureSession(bool);
263 
266  inline void setIdentities(const SgIdentities&);
267 
268  inline void setHave2WarnCloseWindow(bool);
269 
270  inline void setIsShortScreen(bool);
271 
272  inline void setMainWinWidth(int);
273 
274  inline void setMainWinHeight(int);
275 
276  inline void setMainWinPosX(int);
277 
278  inline void setMainWinPosY(int);
279 
280  inline void setSeWinWidth(int);
281 
282  inline void setSeWinHeight(int);
283 
284  inline void setHave2AutoloadAllBands(bool);
285 
286  inline void setIsBandPlotPerSrcView(bool);
287 
289 
290  inline void setLnfsFileName(const QString&);
291 
293 
294  inline void setLnfsIsThroughCatalog(bool);
295 
296  inline void setHave2SkipAutomaticProcessing(bool);
297 
298  inline void setHave2ForceAutomaticProcessing(bool);
299 
300  inline void setExecExternalCommand(bool b) {execExternalCommand_ = b;};
301 
302  inline void setExternalCommand(const QString& command) {externalCommand_ = command;};
303 
304 
305  inline const QString& catnuGetDbInfo() const;
306 
307  inline const QString& catnuSetDbInfo() const;
308 
309 
310 
311  //
312  // Functions:
313  //
314  inline QString className() const {return "NsSetup";};
315 
316  void setUpBinaryIdentities(const QString&);
317 
318  inline QString path2(const QString&) const;
319 
320  //
321  // Friends:
322  //
323 
324 
325 
326  //
327  // I/O:
328  //
329  //
330 
331 
332 private:
333  const QString catnuGetDbInfo_;
334  const QString catnuSetDbInfo_;
335  // pathes:
336  QString path2Home_;
338  QString path2DbhFiles_;
350  // aux log:
351  QString path2AuxLogs_;
353 
357  // transients:
359 
360  // look & feel:
369  // options:
373 
374  // identities:
376 
377  // the last non-finished session:
378  QString lnfsFileName_;
381  // post save action:
384 
385  // temporaries (do not need to save it):
388 };
389 /*=====================================================================================================*/
390 
391 
392 
393 
394 
395 /*=====================================================================================================*/
396 /* */
397 /* NsSetup inline members: */
398 /* */
399 /*=====================================================================================================*/
400 //
401 //
402 //
403 // INTERFACES:
404 //
405 //
406 inline const QString& NsSetup::getPath2Home() const
407 {
408  return path2Home_;
409 };
410 
411 
412 
413 //
414 inline const QString& NsSetup::getPath2CatNuInterfaceExec() const
415 {
417 };
418 
419 
420 
421 //
422 inline const QString& NsSetup::getPath2DbhFiles() const
423 {
424  return path2DbhFiles_;
425 };
426 
427 
428 
429 //
430 inline const QString& NsSetup::getPath2VgosDbFiles() const
431 {
432  return path2VgosDbFiles_;
433 };
434 
435 
436 
437 //
438 inline const QString& NsSetup::getPath2APrioriFiles() const
439 {
440  return path2APrioriFiles_;
441 };
442 
443 
444 
445 //
446 inline const QString& NsSetup::getPath2MasterFiles() const
447 {
448  return path2MasterFiles_;
449 };
450 
451 
452 
453 //
454 inline const QString& NsSetup::getPath2SpoolFileOutput() const
455 {
456  return path2SpoolFileOutput_;
457 };
458 
459 
460 
461 //
462 inline const QString& NsSetup::getPath2NotUsedObsFileOutput() const
463 {
465 };
466 
467 
468 
469 //
470 inline const QString& NsSetup::getPath2ReportOutput() const
471 {
472  return path2ReportOutput_;
473 };
474 
475 
476 
477 //
478 inline const QString& NsSetup::getPath2NgsOutput() const
479 {
480  return path2NgsOutput_;
481 };
482 
483 
484 
485 //
486 inline const QString& NsSetup::getPath2PlotterOutput() const
487 {
488  return path2PlotterOutput_;
489 };
490 
491 
492 
493 //
494 inline const QString& NsSetup::getPath2IntermediateResults() const
495 {
497 };
498 
499 
500 
501 //
503 {
504  return autoSavingMode_;
505 };
506 
507 
508 
509 //
510 inline const QString& NsSetup::getPath2AuxLogs() const
511 {
512  return path2AuxLogs_;
513 };
514 
515 
516 
517 //
519 {
521 };
522 
523 
524 
525 //
527 {
528  return have2UpdateCatalog_;
529 };
530 
531 
532 
533 //
535 {
536  return have2MaskSessionCode_;
537 };
538 
539 
540 
541 //
543 {
545 };
546 
547 
548 
549 //
551 {
553 };
554 
555 
556 
557 //
559 {
560  return identities_;
561 };
562 
563 
564 
565 //
567 {
568  return identities_;
569 };
570 
571 
572 
573 //
575 {
576  return have2WarnCloseWindow_;
577 };
578 
579 
580 
581 //
582 inline bool NsSetup::getIsShortScreen() const
583 {
584  return isShortScreen_;
585 };
586 
587 
588 
589 //
590 inline int NsSetup::getMainWinWidth() const
591 {
592  return mainWinWidth_;
593 };
594 
595 
596 
597 //
598 inline int NsSetup::getMainWinHeight() const
599 {
600  return mainWinHeight_;
601 };
602 
603 
604 
605 //
606 inline int NsSetup::getMainWinPosX() const
607 {
608  return mainWinPosX_;
609 };
610 
611 
612 
613 //
614 inline int NsSetup::getMainWinPosY() const
615 {
616  return mainWinPosY_;
617 };
618 
619 
620 
621 //
622 inline int NsSetup::getSeWinWidth() const
623 {
624  return seWinWidth_;
625 };
626 
627 
628 
629 //
630 inline int NsSetup::getSeWinHeight() const
631 {
632  return seWinHeight_;
633 };
634 
635 
636 
637 //
639 {
640  return have2AutoloadAllBands_;
641 };
642 
643 
644 
645 //
647 {
648  return isBandPlotPerSrcView_;
649 };
650 
651 
652 
653 //
655 {
657 };
658 
659 
660 
661 //
662 inline const QString& NsSetup::getLnfsFileName() const
663 {
664  return lnfsFileName_;
665 };
666 
667 
668 
669 //
671 {
672  return lnfsOriginType_;
673 };
674 
675 
676 
677 //
679 {
680  return lnfsIsThroughCatalog_;
681 };
682 
683 
684 
685 //
687 {
689 };
690 
691 
692 
693 //
695 {
697 };
698 
699 
700 
701 //
702 // sets:
703 //
704 inline void NsSetup::setPath2Home(const QString& str)
705 {
706  path2Home_ = str;
707 };
708 
709 
710 
711 //
712 inline void NsSetup::setPath2CatNuInterfaceExec(const QString& str)
713 {
715 };
716 
717 
718 
719 //
720 inline void NsSetup::setPath2DbhFiles(const QString& str)
721 {
722  path2DbhFiles_ = str;
723 };
724 
725 
726 
727 //
728 inline void NsSetup::setPath2VgosDbFiles(const QString& str)
729 {
730  path2VgosDbFiles_ = str;
731 };
732 
733 
734 
735 //
736 inline void NsSetup::setPath2APrioriFiles(const QString& str)
737 {
738  path2APrioriFiles_ = str;
739 };
740 
741 
742 
743 //
744 inline void NsSetup::setPath2MasterFiles(const QString& str)
745 {
746  path2MasterFiles_ = str;
747 };
748 
749 
750 
751 //
752 inline void NsSetup::setPath2SpoolFileOutput(const QString& str)
753 {
754  path2SpoolFileOutput_ = str;
755 };
756 
757 
758 
759 //
760 inline void NsSetup::setPath2NotUsedObsFileOutput(const QString& str)
761 {
763 };
764 
765 
766 
767 //
768 inline void NsSetup::setPath2ReportOutput(const QString& str)
769 {
770  path2ReportOutput_ = str;
771 };
772 
773 
774 
775 //
776 inline void NsSetup::setPath2NgsOutput(const QString& str)
777 {
778  path2NgsOutput_ = str;
779 };
780 
781 
782 
783 //
784 inline void NsSetup::setPath2PlotterOutput(const QString& str)
785 {
786  path2PlotterOutput_ = str;
787 };
788 
789 
790 
791 //
792 inline void NsSetup::setPath2IntermediateResults(const QString& str)
793 {
795 };
796 
797 
798 
799 //
801 {
802  autoSavingMode_ = mode;
803 };
804 
805 
806 
807 //
808 inline void NsSetup::setPath2AuxLogs(const QString& str)
809 {
810  path2AuxLogs_ = str;
811 };
812 
813 
814 
815 //
816 inline void NsSetup::setHave2SavePerSessionLog(bool have2)
817 {
818  have2SavePerSessionLog_ = have2;
819 };
820 
821 
822 
823 //
824 inline void NsSetup::setHave2UpdateCatalog(bool have2)
825 {
826  have2UpdateCatalog_ = have2;
827 };
828 
829 
830 
831 //
832 inline void NsSetup::setHave2MaskSessionCode(bool have2)
833 {
834  have2MaskSessionCode_ = have2;
835 };
836 
837 
838 
839 //
841 {
843 };
844 
845 
846 
847 //
849 {
851 };
852 
853 
854 
855 //
856 inline void NsSetup::setIdentities(const SgIdentities& id)
857 {
858  identities_ = id;
859 };
860 
861 
862 
863 //
864 inline void NsSetup::setHave2WarnCloseWindow(bool have2)
865 {
866  have2WarnCloseWindow_ = have2;
867 };
868 
869 
870 
871 //
872 inline void NsSetup::setIsShortScreen(bool is)
873 {
874  isShortScreen_ = is;
875 };
876 
877 
878 
879 //
880 inline void NsSetup::setMainWinWidth(int w)
881 {
882  mainWinWidth_ = w;
883 };
884 
885 
886 
887 //
888 inline void NsSetup::setMainWinHeight(int h)
889 {
890  mainWinHeight_ = h;
891 };
892 
893 
894 
895 //
896 inline void NsSetup::setMainWinPosX(int x)
897 {
898  mainWinPosX_ = x;
899 };
900 
901 
902 
903 //
904 inline void NsSetup::setMainWinPosY(int y)
905 {
906  mainWinPosY_ = y;
907 };
908 
909 
910 
911 //
912 inline void NsSetup::setSeWinWidth(int w)
913 {
914  seWinWidth_ = w;
915 };
916 
917 
918 
919 //
920 inline void NsSetup::setSeWinHeight(int h)
921 {
922  seWinHeight_ = h;
923 };
924 
925 
926 
927 //
928 inline void NsSetup::setHave2AutoloadAllBands(bool have2)
929 {
930  have2AutoloadAllBands_ = have2;
931 };
932 
933 
934 
935 //
937 {
939 };
940 
941 
942 
943 //
945 {
947 };
948 
949 
950 
951 //
952 inline void NsSetup::setLnfsFileName(const QString& str)
953 {
954  lnfsFileName_ = str;
955 };
956 
957 
958 
959 //
961 {
962  lnfsOriginType_ = o;
963 };
964 
965 
966 
967 //
969 {
971 };
972 
973 
974 
975 //
977 {
979 };
980 
981 
982 
983 //
985 {
987 };
988 
989 
990 
991 //
992 inline const QString& NsSetup::catnuGetDbInfo() const
993 {
994  return catnuGetDbInfo_;
995 };
996 
997 
998 
999 //
1000 inline const QString& NsSetup::catnuSetDbInfo() const
1001 {
1002  return catnuSetDbInfo_;
1003 };
1004 
1005 
1006 
1007 //
1008 inline QString NsSetup::path2(const QString& path) const
1009 {
1010  return
1011  path.size()==0 ? path2Home_ :
1012  (path.at(0)==QChar('/') ? path : path2Home_ + "/" + path);
1013 };
1014 
1015 
1016 
1017 
1018 
1019 
1020 /*=====================================================================================================*/
1021 #endif // NS_SETUP_H
int seWinHeight_
Definition: NsSetup.h:368
const QString catnuSetDbInfo_
Definition: NsSetup.h:334
QString path2IntermediateResults_
Definition: NsSetup.h:348
void setExecExternalCommand(bool b)
Definition: NsSetup.h:300
bool have2KeepSpoolFileReports_
Definition: NsSetup.h:356
void setPath2APrioriFiles(const QString &)
Definition: NsSetup.h:736
const SgIdentities & getIdentities() const
Definition: NsSetup.h:558
bool have2WarnCloseWindow_
Definition: NsSetup.h:361
const QString & catnuGetDbInfo() const
Definition: NsSetup.h:992
virtual ~NsSetup()
Definition: NsSetup.cpp:97
const QString & getPath2AuxLogs() const
Definition: NsSetup.h:510
void setPath2NgsOutput(const QString &)
Definition: NsSetup.h:776
int getMainWinHeight() const
Definition: NsSetup.h:598
const QString catnuGetDbInfo_
Definition: NsSetup.h:333
bool isBandPlotPerSrcView_
Definition: NsSetup.h:372
QString className() const
Definition: NsSetup.h:314
void setPath2DbhFiles(const QString &)
Definition: NsSetup.h:720
void setUpBinaryIdentities(const QString &)
Definition: NsSetup.cpp:104
void setSeWinWidth(int)
Definition: NsSetup.h:912
void setHave2LoadImmatureSession(bool)
Definition: NsSetup.h:848
QString path2(const QString &) const
Definition: NsSetup.h:1008
AutoSaving getAutoSavingMode() const
Definition: NsSetup.h:502
bool have2UpdateCatalog_
Definition: NsSetup.h:354
bool have2LoadImmatureSession_
Definition: NsSetup.h:358
bool have2AutoloadAllBands_
Definition: NsSetup.h:370
bool getHave2SkipAutomaticProcessing() const
Definition: NsSetup.h:686
QString path2AuxLogs_
Definition: NsSetup.h:351
void setMainWinPosY(int)
Definition: NsSetup.h:904
const QString & getPath2ReportOutput() const
Definition: NsSetup.h:470
const QString & getPath2CatNuInterfaceExec() const
Definition: NsSetup.h:414
void setPath2SpoolFileOutput(const QString &)
Definition: NsSetup.h:752
const QString & getPath2MasterFiles() const
Definition: NsSetup.h:446
void setPath2VgosDaFiles(const QString &path)
Definition: NsSetup.h:206
bool getExecExternalCommand() const
Definition: NsSetup.h:185
bool getHave2SavePerSessionLog() const
Definition: NsSetup.h:518
const QString & getPath2SpoolFileOutput() const
Definition: NsSetup.h:454
SgIdentities identities_
Definition: NsSetup.h:375
bool getHave2AutoloadAllBands() const
Definition: NsSetup.h:638
const QString & getExternalCommand() const
Definition: NsSetup.h:187
SgPlot::OutputFormat plotterOutputFormat_
Definition: NsSetup.h:371
void setPath2IntermediateResults(const QString &)
Definition: NsSetup.h:792
void setLnfsOriginType(SgVlbiSessionInfo::OriginType)
Definition: NsSetup.h:960
void setHave2SavePerSessionLog(bool)
Definition: NsSetup.h:816
int mainWinPosX_
Definition: NsSetup.h:365
bool getHave2MaskSessionCode() const
Definition: NsSetup.h:534
SgPlot::OutputFormat getPlotterOutputFormat() const
Definition: NsSetup.h:654
QString path2CatNuInterfaceExec_
Definition: NsSetup.h:337
bool isShortScreen_
Definition: NsSetup.h:362
const QString & getPath2Home() const
Definition: NsSetup.h:406
void setHave2ForceAutomaticProcessing(bool)
Definition: NsSetup.h:984
int mainWinHeight_
Definition: NsSetup.h:364
void setSeWinHeight(int)
Definition: NsSetup.h:920
void setPath2CatNuInterfaceExec(const QString &)
Definition: NsSetup.h:712
void setPath2Home(const QString &)
Definition: NsSetup.h:704
void setPath2ReportOutput(const QString &)
Definition: NsSetup.h:768
bool lnfsIsThroughCatalog_
Definition: NsSetup.h:380
AutoSaving autoSavingMode_
Definition: NsSetup.h:349
NsSetup()
Definition: NsSetup.cpp:43
QString path2NgsOutput_
Definition: NsSetup.h:346
QString path2DbhFiles_
Definition: NsSetup.h:338
int getMainWinWidth() const
Definition: NsSetup.h:590
SgIdentities & identities()
Definition: NsSetup.h:566
bool getHave2KeepSpoolFileReports() const
Definition: NsSetup.h:542
void setHave2WarnCloseWindow(bool)
Definition: NsSetup.h:864
int getSeWinWidth() const
Definition: NsSetup.h:622
QString path2MasterFiles_
Definition: NsSetup.h:342
bool getHave2LoadImmatureSession() const
Definition: NsSetup.h:550
bool have2SavePerSessionLog_
Definition: NsSetup.h:352
void setMainWinPosX(int)
Definition: NsSetup.h:896
int seWinWidth_
Definition: NsSetup.h:367
void setPath2NotUsedObsFileOutput(const QString &)
Definition: NsSetup.h:760
const QString & getPath2APrioriFiles() const
Definition: NsSetup.h:438
bool have2SkipAutomaticProcessing_
Definition: NsSetup.h:386
void setIdentities(const SgIdentities &)
Definition: NsSetup.h:856
void setPlotterOutputFormat(SgPlot::OutputFormat)
Definition: NsSetup.h:944
void setMainWinWidth(int)
Definition: NsSetup.h:880
bool getIsShortScreen() const
Definition: NsSetup.h:582
const QString & getPath2VgosDaFiles() const
Definition: NsSetup.h:87
bool getHave2UpdateCatalog() const
Definition: NsSetup.h:526
const QString & getLnfsFileName() const
Definition: NsSetup.h:662
QString path2ReportOutput_
Definition: NsSetup.h:345
QString path2PlotterOutput_
Definition: NsSetup.h:347
QString externalCommand_
Definition: NsSetup.h:383
SgVlbiSessionInfo::OriginType lnfsOriginType_
Definition: NsSetup.h:379
QString path2NotUsedObsFileOutput_
Definition: NsSetup.h:344
const QString & getPath2DbhFiles() const
Definition: NsSetup.h:422
void setIsBandPlotPerSrcView(bool)
Definition: NsSetup.h:936
QString path2Home_
Definition: NsSetup.h:336
int getMainWinPosX() const
Definition: NsSetup.h:606
int getSeWinHeight() const
Definition: NsSetup.h:630
void setPath2PlotterOutput(const QString &)
Definition: NsSetup.h:784
bool execExternalCommand_
Definition: NsSetup.h:382
QString path2VgosDaFiles_
Definition: NsSetup.h:340
const QString & getPath2PlotterOutput() const
Definition: NsSetup.h:486
AutoSaving
Definition: NsSetup.h:49
@ AS_ON_EXIT
Definition: NsSetup.h:51
@ AS_NONE
Definition: NsSetup.h:50
@ AS_ALWAYS
Definition: NsSetup.h:52
void setHave2KeepSpoolFileReports(bool)
Definition: NsSetup.h:840
int mainWinPosY_
Definition: NsSetup.h:366
void setPath2VgosDbFiles(const QString &)
Definition: NsSetup.h:728
const QString & getPath2VgosDbFiles() const
Definition: NsSetup.h:430
bool getHave2WarnCloseWindow() const
Definition: NsSetup.h:574
bool have2MaskSessionCode_
Definition: NsSetup.h:355
void setPath2MasterFiles(const QString &)
Definition: NsSetup.h:744
bool have2ForceAutomaticProcessing_
Definition: NsSetup.h:387
void setHave2AutoloadAllBands(bool)
Definition: NsSetup.h:928
QString path2VgosDbFiles_
Definition: NsSetup.h:339
void setLnfsFileName(const QString &)
Definition: NsSetup.h:952
bool getLnfsIsThroughCatalog() const
Definition: NsSetup.h:678
QString path2SpoolFileOutput_
Definition: NsSetup.h:343
void setLnfsIsThroughCatalog(bool)
Definition: NsSetup.h:968
SgVlbiSessionInfo::OriginType getLnfsOriginType() const
Definition: NsSetup.h:670
void setHave2SkipAutomaticProcessing(bool)
Definition: NsSetup.h:976
int getMainWinPosY() const
Definition: NsSetup.h:614
const QString & getPath2NgsOutput() const
Definition: NsSetup.h:478
QString path2APrioriFiles_
Definition: NsSetup.h:341
bool getIsBandPlotPerSrcView() const
Definition: NsSetup.h:646
bool getHave2ForceAutomaticProcessing() const
Definition: NsSetup.h:694
void setHave2MaskSessionCode(bool)
Definition: NsSetup.h:832
void setHave2UpdateCatalog(bool)
Definition: NsSetup.h:824
void setIsShortScreen(bool)
Definition: NsSetup.h:872
int mainWinWidth_
Definition: NsSetup.h:363
void setPath2AuxLogs(const QString &)
Definition: NsSetup.h:808
const QString & getPath2NotUsedObsFileOutput() const
Definition: NsSetup.h:462
const QString & getPath2IntermediateResults() const
Definition: NsSetup.h:494
void setAutoSavingMode(AutoSaving)
Definition: NsSetup.h:800
const QString & catnuSetDbInfo() const
Definition: NsSetup.h:1000
void setExternalCommand(const QString &command)
Definition: NsSetup.h:302
QString lnfsFileName_
Definition: NsSetup.h:378
void setMainWinHeight(int)
Definition: NsSetup.h:888