add an option to musrfit which allows to replace to musrfit_startup.xml by the default one.

This commit is contained in:
2023-11-11 18:26:25 +01:00
parent f72a213bd8
commit df926a4d66
3 changed files with 53 additions and 27 deletions

View File

@@ -54,7 +54,7 @@ int parseXmlFile(TSAXParser*, const char*);
class PStartupHandler : public TObject, public TQObject
{
public:
PStartupHandler();
PStartupHandler(bool reset_startup_file=false);
virtual ~PStartupHandler();
virtual void OnStartDocument(); // SLOT
@@ -99,7 +99,7 @@ class PStartupHandler : public TObject, public TQObject
PStartupOptions fStartupOptions; ///< collects all startup options which will be requested by PMsrFileHandler
Bool_t StartupFileExists(Char_t *fln);
Bool_t WriteDefaultStartupFile();
Bool_t WriteDefaultStartupFile(bool reset_startup_file=false);
ClassDef(PStartupHandler, 1)
};