40 #include "git-revision.h" 55 #include <boost/algorithm/string.hpp> 56 #include <boost/algorithm/string/case_conv.hpp> 58 #include <boost/lexical_cast.hpp> 72 unsigned int number(0);
74 number = boost::lexical_cast<
unsigned int>(s);
77 catch(boost::bad_lexical_cast &) {
88 std::cout << std::endl <<
"usage 0: msr2data [--version] | [--help]";
89 std::cout << std::endl <<
"usage 1: msr2data <run> <extension> options";
90 std::cout << std::endl <<
"usage 2: msr2data <run1> <run2> <extension> options";
91 std::cout << std::endl <<
"usage 3: msr2data \\[<runList>\\] <extension> options";
92 std::cout << std::endl <<
"usage 4: msr2data <runListFileName> <extension> options";
93 std::cout << std::endl;
94 std::cout << std::endl <<
" <runList> can be:";
95 std::cout << std::endl <<
" (i) <run0>, <run1>, <run2>, ... <runN> : run numbers, e.g. 123 124";
96 std::cout << std::endl <<
" (ii) <run0>-<runN> : a range, e.g. 123-125 -> 123 124 125";
97 std::cout << std::endl <<
" (iii) <run0>:<runN>:<step> : a sequence, e.g. 123:127:2 -> 123 125 127";
98 std::cout << std::endl <<
" <step> will give the step width and has to be a positive number!";
99 std::cout << std::endl <<
" a <runList> can also combine (i)-(iii), e.g. 123 128-130 133, etc.";
100 std::cout << std::endl <<
" <runListFileName> : an ASCII file containing a list of run numbers and optional";
101 std::cout << std::endl <<
" external parameters is passed to msr2data. For details see";
102 std::cout << std::endl <<
" the online documentation: http://lmu.web.psi.ch/musrfit/user/MUSR/Msr2Data.html";
103 std::cout << std::endl <<
" <extension> : msr-file extension, e.g. _tf_h13 for the file name 8472_tf_h13.msr";
104 std::cout << std::endl;
105 std::cout << std::endl <<
"options:";
106 std::cout << std::endl <<
" -o<outputfile> : specify the name of the DB or column-data output file; default: out.db/out.dat";
107 std::cout << std::endl <<
" if the option '-o none' is used, no output file will be written.";
108 std::cout << std::endl <<
" new : before writing a new output file, delete the contents of any existing file with the same name";
109 std::cout << std::endl <<
" data : instead of to a DB file the data are written to a simple column structure";
110 std::cout << std::endl <<
" header : force writing of the file header to the output file";
111 std::cout << std::endl <<
" noheader : no file header is written to the output file";
112 std::cout << std::endl <<
" If either none or both of the header options are given, the file header will be written";
113 std::cout << std::endl <<
" if a new file is created, but not if the output file exists already!";
114 std::cout << std::endl <<
" nosummary : no additional data from the run data file is written to the output file";
115 std::cout << std::endl <<
" paramList <param> : option used to select the parameters which shall be exported.";
116 std::cout << std::endl <<
" <param> is a list of parameter numbers to be exported. Allowed lists are:";
117 std::cout << std::endl <<
" 1-16 will export parameters 1 to 16. 1 3 5 will export parameters 1 3 5.";
118 std::cout << std::endl <<
" A combination of both is possible, e.g. 1-16 19 31 62, and so on.";
119 std::cout << std::endl <<
" fit : invoke musrfit to fit the specified runs";
120 std::cout << std::endl <<
" All msr input files are assumed to be present, none is newly generated!";
121 std::cout << std::endl <<
" fit-<template>! : generate msr files for the runs to be processed from the <template> run";
122 std::cout << std::endl <<
" and call musrfit for fitting these runs";
123 std::cout << std::endl <<
" fit-<template> : same as above, but the <template> run is only used for the first file creation---";
124 std::cout << std::endl <<
" the successive files are generated using the musrfit output from the preceding runs";
125 std::cout << std::endl <<
" msr-<template> : same as above without calling musrfit";
126 std::cout << std::endl <<
" In case any fitting option is present, this option is ignored!";
127 std::cout << std::endl <<
" -k, --keep-mn2-output : if fitting is used, pass the option --keep-mn2-output to musrfit";
128 std::cout << std::endl <<
" -t, --title-from-data-file : if fitting is used, pass the option --title-from-data-file to musrfit";
129 std::cout << std::endl <<
" -e, --estimateN0: estimate N0 for single histogram fits.";
130 std::cout << std::endl <<
" -p, --per-run-block-chisq: will per run block chisq to the msr-file.";
131 std::cout << std::endl;
132 std::cout << std::endl <<
" global : switch on the global-fit mode";
133 std::cout << std::endl <<
" Within that mode all specified runs will be united in a single msr file!";
134 std::cout << std::endl <<
" The fit parameters can be either run specific or common to all runs.";
135 std::cout << std::endl <<
" For a complete description of this feature please refer to the manual.";
136 std::cout << std::endl;
137 std::cout << std::endl <<
" global+[!] : operate in the global-fit mode, however, in case a global input file is created";
138 std::cout << std::endl <<
" all specified runs are pre-analyzed first one by one using the given template.";
139 std::cout << std::endl <<
" For the generation of the global input file, the run-specific parameter values are taken";
140 std::cout << std::endl <<
" from this pre-analysis for each run---they are not just copied from the template.";
141 std::cout << std::endl <<
" The specification of '!' determines which fit mode (see above) is used for this pre-analysis.";
142 std::cout << std::endl;
143 std::cout << std::endl <<
" Typical examples:";
144 std::cout << std::endl;
145 std::cout << std::endl <<
" msr2data 2047 2050 _tf_histo fit-2046";
146 std::cout << std::endl <<
" will use 2046_tf_histo.msr as templete, and subsequently generating 2047_tf_histo.msr until";
147 std::cout << std::endl <<
" 2050_tf_histo.msr and fit them.";
148 std::cout << std::endl;
149 std::cout << std::endl <<
" msr2data 2047 2050 _tf_histo msr-2046";
150 std::cout << std::endl <<
" will use 2046_tf_histo.msr as templete, and subsequently generating 2047_tf_histo.msr until";
151 std::cout << std::endl <<
" 2050_tf_histo.msr, but NO fitting will be done.";
152 std::cout << std::endl;
153 std::cout << std::endl <<
" msr2data 2046 2050 _tf_histo -o fitParam.db";
154 std::cout << std::endl <<
" will collect the fit parameters from runs 2046-2050 (msr-files 2046_tf_histo.msr etc.) and";
155 std::cout << std::endl <<
" write them to the file fitParam.db (DB-format).";
156 std::cout << std::endl;
157 std::cout << std::endl <<
" msr2data [2047:2053:2 2056] _tf_histo fit-2045";
158 std::cout << std::endl <<
" will use 2045_tf_histo.msr as templete, and subsequently generating msr-files from the run-list:";
159 std::cout << std::endl <<
" 2047 2049 2051 2053 2056 (2047_tf_histo.msr etc.) and fit them.";
160 std::cout << std::endl;
161 std::cout << std::endl <<
" msr2data 2046 2058 _tf_histo paramList 1-12 data -o fitParam.dat";
162 std::cout << std::endl <<
" will export the parameters number 1 trough 12 in a column like fashion of the runs 2046 to 2058,";
163 std::cout << std::endl <<
" collected form the msr-files 2046_tf_histo.msr and so on.";
164 std::cout << std::endl;
165 std::cout << std::endl <<
" For further information please refer to";
166 std::cout << std::endl <<
" http://lmu.web.psi.ch/musrfit/user/html/msr2data.html#msr2data";
167 std::cout << std::endl << std::endl;
185 for (std::vector<std::string>::const_iterator iter(arg.begin()); iter != arg.end(); ++iter) {
186 if ( (!iter->compare(
"header")) || (!iter->compare(
"noheader")) || (!iter->compare(
"nosummary")) \
187 || (!iter->substr(0,3).compare(
"fit")) || (!iter->compare(
"-k")) || (!iter->compare(
"--keep-mn2-output")) \
188 || (!iter->compare(
"-t")) || (!iter->compare(
"--title-from-data-file")) \
189 || (!iter->compare(
"-e")) || (!iter->compare(
"--estimateN0")) \
190 || (!iter->compare(
"-p")) || (!iter->compare(
"--per-run-block-chisq")) \
191 || (!iter->compare(
"data")) || (!iter->substr(0,4).compare(
"msr-")) || (!iter->compare(
"global")) \
192 || (!iter->compare(
"global+")) || (!iter->compare(
"global+!")) || (!iter->compare(
"new")) \
193 || !iter->compare(
"paramList") )
195 else if (!iter->substr(0,2).compare(
"-o")) {
197 if (!iter->compare(
"-o")) {
198 if (++iter == arg.end())
226 std::string outputFile;
228 outputFile =
"out.db";
230 outputFile =
"out.dat";
232 std::vector<std::string>::iterator iterNext(arg.begin());
233 for (std::vector<std::string>::iterator iter(arg.begin()); iter != arg.end(); ++iter) {
235 if (!iter->substr(0,2).compare(
"-o")) {
236 if (!iter->compare(
"-o")) {
237 if ((iterNext != arg.end()) && (iterNext->compare(
"header")) && (iterNext->compare(
"noheader")) && (iterNext->compare(
"nosummary")) \
238 && (iterNext->substr(0,3).compare(
"fit")) && (iterNext->compare(
"-k")) && (iterNext->compare(
"-t")) \
239 && (iterNext->compare(
"-e")) && (iterNext->compare(
"-p")) \
240 && (iterNext->compare(
"data")) && (iterNext->substr(0,3).compare(
"msr")) && (iterNext->compare(
"global")) \
241 && (iterNext->compare(
"global+")) && (iterNext->compare(
"global+!")) && (iterNext->compare(
"new"))) {
242 outputFile = *iterNext;
247 std::cout << std::endl;
248 std::cout <<
">> msr2data: **WARNING** You did not specify an output file! The default one (" << outputFile <<
") will be used." << std::endl;
253 outputFile = iter->substr(2);
278 std::vector<std::string>::iterator iter;
279 iter = find(arg.begin(), arg.end(), s);
281 if (iter != arg.end()) {
308 std::vector<std::string>::iterator iter(arg.begin());
309 while (iter != arg.end()) {
310 if (!iter->compare(
"fit")) {
316 iter = arg.erase(iter);
318 else if (!iter->substr(0,4).compare(
"fit-")) {
323 std::string::size_type loc = s.rfind(
'!');
324 if (loc != std::string::npos) {
331 temp = boost::lexical_cast<
int>(s);
334 catch(boost::bad_lexical_cast &) {
361 for (std::vector<std::string>::iterator iter(arg.begin()); iter != arg.end(); ++iter) {
362 if (!iter->substr(0,4).compare(
"msr-")) {
365 temp = boost::lexical_cast<
int>(s);
368 catch(boost::bad_lexical_cast &) {
390 for (
unsigned int i=0; i<arg.size(); i++) {
391 if (!arg[i].compare(
"paramList")) {
402 if (idx == arg.size()) {
403 std::cerr << std::endl <<
"**ERROR** found paramList without any arguments!" << std::endl;
409 std::vector<std::string> str;
410 unsigned int idx_end=0;
411 size_t pos=std::string::npos;
412 for (
unsigned int i=idx; i<arg.size(); i++) {
413 pos = arg[i].find(
"-");
417 }
else if (pos != std::string::npos) {
418 boost::split(str, arg[i], boost::is_any_of(
"-"));
419 if (str.size() != 2) {
420 std::cerr << std::endl <<
"**ERROR** found token " << arg[i] <<
" in paramList command which cannot be handled." << std::endl;
424 if (!str[0].compare(
"fit") || !str[0].compare(
"msr")) {
429 std::cerr << std::endl <<
"**ERROR** found token " << arg[i] <<
" in paramList command which cannot be handled." << std::endl;
433 unsigned int start=boost::lexical_cast<
unsigned int>(str[0]);
434 unsigned int end=boost::lexical_cast<
unsigned int>(str[1]);
435 for (
unsigned int j=start; j<=end; j++)
436 paramList.push_back(j);
438 paramList.push_back(boost::lexical_cast<unsigned int>(arg[i]));
445 idx_end = arg.size();
448 arg.erase(arg.begin()+idx-1, arg.begin()+idx_end);
451 for (
unsigned int i=0; i<paramList.size(); i++) {
452 for (
unsigned int j=i+1; j<paramList.size(); j++) {
453 if (paramList[i] == paramList[j]) {
454 std::cerr << std::endl <<
"**ERROR** the parameter list numbers have to be unique. Found " << paramList[i] <<
" at least 2 times." << std::endl;
461 return paramList.size();
476 int main(
int argc,
char *argv[])
480 if (!strcmp(argv[1],
"--help")) {
483 }
else if (!strcmp(argv[1],
"--version")) {
485 #ifdef HAVE_GIT_REV_H 486 std::cout << std::endl <<
"msr2data version: " << PACKAGE_VERSION <<
", git-branch: " << GIT_BRANCH <<
", git-rev: " << GIT_CURRENT_SHA1 <<
" (" << BUILD_TYPE <<
"), ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl;
488 std::cout << std::endl <<
"msr2data version: " << PACKAGE_VERSION <<
" (" << BUILD_TYPE <<
"), ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl;
491 #ifdef HAVE_GIT_REV_H 492 std::cout << std::endl <<
"msr2data git-branch: " << GIT_BRANCH <<
", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl;
494 std::cout << std::endl <<
"msr2data version: unknown." << std::endl << std::endl;
511 std::vector<std::string> arg;
512 for (
int i(1); i<argc; ++i) {
513 arg.push_back(argv[i]);
517 std::vector<unsigned int> run_vec;
518 std::string run_list;
519 std::string msrExtension;
520 std::vector<unsigned int> param_vec;
523 if (arg[0].at(0) ==
'[') {
526 unsigned int firstRunNumberInArg(0), lastRunNumberInArg(0);
527 unsigned int rightbracket(std::numeric_limits<unsigned int>::max());
529 if (!arg[0].compare(
"["))
530 firstRunNumberInArg = 1;
532 arg[0]=arg[0].substr(1);
534 for (
unsigned int i(firstRunNumberInArg); i<arg.size(); ++i) {
535 std::string::size_type loc = arg[i].rfind(
']');
536 if ( loc != std::string::npos ) {
538 if (!arg[i].compare(
"]") && i > 0)
539 lastRunNumberInArg = i-1;
541 arg[i]=arg[i].substr(0,loc);
542 lastRunNumberInArg = i;
547 if (rightbracket == std::numeric_limits<unsigned int>::max()) {
548 std::cerr << std::endl;
549 std::cerr <<
">> msr2data: **ERROR** You used the list specification without closing bracket (])! Quitting now." << std::endl;
554 for (
unsigned int i(firstRunNumberInArg); i<=lastRunNumberInArg; ++i) {
555 run_list += arg[i] +
" ";
558 std::unique_ptr<PStringNumberList> nl = std::make_unique<PStringNumberList>(run_list);
559 std::string errorMsg(
"");
560 if (!nl->Parse(errorMsg)) {
561 std::cerr << std::endl;
562 std::cerr <<
">> msr2data: " << errorMsg <<
" - Quitting now." << std::endl;
566 run_vec = nl->GetList();
568 msrExtension = arg[rightbracket + 1];
570 std::vector<std::string>::iterator iter(arg.begin());
571 for (
unsigned int i(0); i<rightbracket + 2; ++i) {
579 if (argOneIsNumber && argTwoIsNumber) {
582 if (arg.size() < 3) {
583 std::cerr << std::endl;
584 std::cerr <<
">> msr2data: **ERROR** No msr-file extension specified! Quitting now..." << std::endl;
590 run_vec.push_back(boost::lexical_cast<unsigned int>(arg[0]));
591 run_vec.push_back(boost::lexical_cast<unsigned int>(arg[1]));
593 msrExtension = arg[2];
595 std::vector<std::string>::iterator iter(arg.begin());
596 for (
unsigned int i(0); i < 3; i++) {
600 }
else if (argOneIsNumber && !argTwoIsNumber) {
602 run_vec.push_back(boost::lexical_cast<unsigned int>(arg[0]));
603 msrExtension = arg[1];
605 std::vector<std::string>::iterator iter(arg.begin());
606 for (
unsigned int i(0); i < 2; i++) {
613 msrExtension = arg[1];
615 std::vector<std::string>::iterator iter(arg.begin());
616 for (
unsigned int i(0); i < 2; i++) {
623 catch(boost::bad_lexical_cast &) {
624 std::cerr << std::endl;
625 std::cerr <<
">> msr2data: **ERROR** At least one given run number is out of range! Quitting..." << std::endl;
633 if (noParamList == -1) {
640 if (!wrongArgument.empty()) {
641 std::cerr << std::endl;
642 std::cerr <<
">> msr2data: **ERROR** Unknown argument: " << wrongArgument <<
". Quitting..." << std::endl;
655 bool realOutput(
true);
656 if (!boost::algorithm::to_lower_copy(outputFile).compare(
"none"))
660 std::unique_ptr<PMsr2Data> msr2dataHandler = std::make_unique<PMsr2Data>(msrExtension);
666 status = msr2dataHandler->SetRunNumbers(run_vec);
669 status = msr2dataHandler->SetRunNumbers(run_vec[0], run_vec[1]);
672 status = msr2dataHandler->SetRunNumbers(run_vec[0]);
675 status = msr2dataHandler->SetRunNumbers(run_list);
678 std::cerr << std::endl;
679 std::cerr <<
">> msr2data: **ERROR** None of the possible run list specifications has been detected! Quitting now..." << std::endl;
684 std::cerr << std::endl;
685 std::cerr <<
">> msr2data: **ERROR** The run numbers are out of range! Quitting..." << std::endl;
687 }
else if (
status == -1) {
695 bool chainfit(
true), onlyInputCreation(
false);
696 std::string musrfitOptions;
701 std::cerr << std::endl;
702 std::cerr <<
">> msr2data: **ERROR** More than one fitting options are specified! Quitting..." << std::endl;
704 }
else if (temp == -3) {
705 std::cerr << std::endl;
706 std::cerr <<
">> msr2data: **ERROR** The given template has not a valid run number! Quitting..." << std::endl;
714 musrfitOptions.append(
"-k ");
716 musrfitOptions.append(
"-t ");
718 musrfitOptions.append(
"-e ");
720 musrfitOptions.append(
"-p ");
726 if (onlyInputCreation) {
732 std::cerr << std::endl;
733 std::cerr <<
">> msr2data: **ERROR** The given template has not a valid run number! Quitting..." << std::endl;
740 unsigned int globalMode(0);
743 setNormalMode =
false;
746 setNormalMode =
false;
753 status = msr2dataHandler->DetermineRunNumberDigits(temp, setNormalMode);
755 status = msr2dataHandler->DetermineRunNumberDigits(msr2dataHandler->GetPresentRun(), setNormalMode);
763 status = msr2dataHandler->CheckRunNumbersInRange();
765 std::cerr << std::endl;
766 std::cerr <<
">> msr2data: **ERROR** At least one given run number is out of range! Quitting..." << std::endl;
770 bool writeSummary(
false);
771 unsigned int writeHeader(2);
776 std::unique_ptr<std::fstream> fileOutput;
794 fileOutput = std::make_unique<std::fstream>();
795 fileOutput->open(outputFile.c_str(), std::ios::in);
796 if (fileOutput->is_open()) {
797 std::cout << std::endl <<
">> msr2data: **INFO** Deleting output file " << outputFile << std::endl;
799 fileOutput->open(outputFile.c_str(), std::ios::out | std::ios::trunc);
802 std::cout << std::endl <<
">> msr2data: **INFO** Ignoring the 'new' option since " << outputFile <<
" does not exist yet." << std::endl;
804 if (writeHeader == 2) {
811 if (!setNormalMode) {
812 std::ostringstream strInfile;
813 strInfile << msr2dataHandler->GetPresentRun() <<
"+global" << msrExtension <<
".msr";
818 bool success(msr2dataHandler->PrepareGlobalInputFile(temp, strInfile.str(), globalMode));
821 std::cerr << std::endl <<
">> msr2data: **ERROR** Input file generation has not been successful! Quitting..." << std::endl;
827 if (!onlyInputCreation) {
829 std::string path(
"");
831 char *pathPtr(getenv(
"MUSRFITPATH"));
833 path = boost::lexical_cast<std::string>(pathPtr);
840 std::cerr << std::endl <<
">> msr2data: **WARNING** The MUSRFITPATH environment variable is not set!";
841 std::cerr << std::endl <<
">> msr2data: **WARNING** Please set it or at least ensure that musrfit can be found on the PATH!" << std::endl;
843 std::ostringstream oss;
844 oss << path <<
"musrfit" <<
" " << strInfile.str() <<
" " << musrfitOptions;
845 std::cout << std::endl <<
">> msr2data: **INFO** Calling " << oss.str() << std::endl;
846 if (system(oss.str().c_str()) == -1) {
847 std::cerr <<
"**ERROR** cmd: " << oss.str().c_str() <<
" failed." << std::endl;
855 status = msr2dataHandler->ParseXmlStartupFile();
859 status = msr2dataHandler->ReadMsrFile(strInfile.str());
867 status = msr2dataHandler->ReadRunDataFile();
869 unsigned int counter(0);
871 while (msr2dataHandler->GetPresentRun()) {
873 status = msr2dataHandler->WriteOutput(outputFile, param_vec, db, writeHeader, !setNormalMode, counter);
884 status = msr2dataHandler->ParseXmlStartupFile();
889 unsigned int oldtemp(0);
890 std::ostringstream strInfile;
892 while (msr2dataHandler->GetPresentRun()) {
895 strInfile << msr2dataHandler->GetPresentRun() << msrExtension <<
".msr";
901 if (firstrun || !chainfit)
902 success = msr2dataHandler->PrepareNewInputFile(temp,
false);
904 success = msr2dataHandler->PrepareNewInputFile(oldtemp,
false);
907 oldtemp = msr2dataHandler->GetPresentRun();
910 std::cerr << std::endl <<
">> msr2data: **ERROR** Input file generation has not been successful! Quitting..." << std::endl;
916 if (!onlyInputCreation) {
918 std::string path(
"");
920 char *pathPtr(getenv(
"MUSRFITPATH"));
922 path = boost::lexical_cast<std::string>(pathPtr);
929 std::cerr << std::endl <<
">> msr2data: **WARNING** The MUSRFITPATH environment variable is not set!";
930 std::cerr << std::endl <<
">> msr2data: **WARNING** Please set it or at least ensure that musrfit can be found on the PATH!" << std::endl;
932 std::ostringstream oss;
933 oss << path <<
"musrfit" <<
" " << strInfile.str() <<
" " << musrfitOptions;
934 std::cout << std::endl <<
">> msr2data: **INFO** Calling " << oss.str() << std::endl;
935 if (system(oss.str().c_str()) == -1) {
936 std::cerr <<
"**ERROR** cmd: " << oss.str().c_str() <<
" failed." << std::endl;
943 status = msr2dataHandler->ReadMsrFile(strInfile.str());
946 status = msr2dataHandler->WriteOutput(
"none", param_vec, db, writeHeader);
957 status = msr2dataHandler->ReadRunDataFile();
960 status = msr2dataHandler->WriteOutput(outputFile, param_vec, db, writeHeader);
973 fileOutput = std::make_unique<std::fstream>();
974 fileOutput->open(outputFile.c_str(), std::ios::in);
975 if (fileOutput->is_open()) {
977 fileOutput->open(outputFile.c_str(), std::ios::out | std::ios::app);
978 if (fileOutput->is_open()) {
979 *fileOutput << std::endl << std::endl;
982 std::cerr << std::endl <<
">> msr2data: **ERROR** The output file " << outputFile <<
" cannot be opened! Please check!";
983 std::cerr << std::endl;
986 std::cerr << std::endl <<
">> msr2data: **WARNING** No output has been written to the file " << outputFile <<
"!";
987 std::cerr << std::endl <<
">> msr2data: **WARNING** Please check the range of runs and the specified options!" << std::endl;
992 std::cout << std::endl <<
">> msr2data: **INFO** The following command line arguments have been specified but not been used: " << std::endl;
993 std::cout <<
">> msr2data: **INFO**";
994 for (
unsigned int i(0); i<arg.size(); ++i)
995 std::cout <<
" " << arg[i];
996 std::cout << std::endl;
999 std::cout << std::endl <<
">> msr2data: done ..." << std::endl;
int msr2data_doInputCreation(std::vector< std::string > &arg, bool &inputOnly)
int main(int argc, char *argv[])
std::string msr2data_validArguments(const std::vector< std::string > &arg)
std::string msr2data_outputfile(std::vector< std::string > &arg, bool db=true)
int msr2data_paramList(std::vector< std::string > &arg, std::vector< unsigned int > ¶mList)
bool msr2data_useOption(std::vector< std::string > &arg, const std::string &s)
int msr2data_doFitting(std::vector< std::string > &arg, bool &chainfit)
bool isNumber(const std::string &s)