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 <<
" -y, --yaml: write fit results (MINUIT2.OUTPUT) into a yaml-file. Output <msr-file>.yaml";
131 std::cout << std::endl <<
" -p, --per-run-block-chisq: will per run block chisq to the msr-file.";
132 std::cout << std::endl;
133 std::cout << std::endl <<
" global : switch on the global-fit mode";
134 std::cout << std::endl <<
" Within that mode all specified runs will be united in a single msr file!";
135 std::cout << std::endl <<
" The fit parameters can be either run specific or common to all runs.";
136 std::cout << std::endl <<
" For a complete description of this feature please refer to the manual.";
137 std::cout << std::endl;
138 std::cout << std::endl <<
" global+[!] : operate in the global-fit mode, however, in case a global input file is created";
139 std::cout << std::endl <<
" all specified runs are pre-analyzed first one by one using the given template.";
140 std::cout << std::endl <<
" For the generation of the global input file, the run-specific parameter values are taken";
141 std::cout << std::endl <<
" from this pre-analysis for each run---they are not just copied from the template.";
142 std::cout << std::endl <<
" The specification of '!' determines which fit mode (see above) is used for this pre-analysis.";
143 std::cout << std::endl;
144 std::cout << std::endl <<
" Typical examples:";
145 std::cout << std::endl;
146 std::cout << std::endl <<
" msr2data 2047 2050 _tf_histo fit-2046";
147 std::cout << std::endl <<
" will use 2046_tf_histo.msr as templete, and subsequently generating 2047_tf_histo.msr until";
148 std::cout << std::endl <<
" 2050_tf_histo.msr and fit them.";
149 std::cout << std::endl;
150 std::cout << std::endl <<
" msr2data 2047 2050 _tf_histo msr-2046";
151 std::cout << std::endl <<
" will use 2046_tf_histo.msr as templete, and subsequently generating 2047_tf_histo.msr until";
152 std::cout << std::endl <<
" 2050_tf_histo.msr, but NO fitting will be done.";
153 std::cout << std::endl;
154 std::cout << std::endl <<
" msr2data 2046 2050 _tf_histo -o fitParam.db";
155 std::cout << std::endl <<
" will collect the fit parameters from runs 2046-2050 (msr-files 2046_tf_histo.msr etc.) and";
156 std::cout << std::endl <<
" write them to the file fitParam.db (DB-format).";
157 std::cout << std::endl;
158 std::cout << std::endl <<
" msr2data [2047:2053:2 2056] _tf_histo fit-2045";
159 std::cout << std::endl <<
" will use 2045_tf_histo.msr as templete, and subsequently generating msr-files from the run-list:";
160 std::cout << std::endl <<
" 2047 2049 2051 2053 2056 (2047_tf_histo.msr etc.) and fit them.";
161 std::cout << std::endl;
162 std::cout << std::endl <<
" msr2data 2046 2058 _tf_histo paramList 1-12 data -o fitParam.dat";
163 std::cout << std::endl <<
" will export the parameters number 1 trough 12 in a column like fashion of the runs 2046 to 2058,";
164 std::cout << std::endl <<
" collected form the msr-files 2046_tf_histo.msr and so on.";
165 std::cout << std::endl;
166 std::cout << std::endl <<
" For further information please refer to";
167 std::cout << std::endl <<
" http://lmu.web.psi.ch/musrfit/user/html/msr2data.html#msr2data";
168 std::cout << std::endl << std::endl;
186 for (std::vector<std::string>::const_iterator iter(arg.begin()); iter != arg.end(); ++iter) {
187 if ( (!iter->compare(
"header")) || (!iter->compare(
"noheader")) || (!iter->compare(
"nosummary")) \
188 || (!iter->substr(0,3).compare(
"fit")) || (!iter->compare(
"-k")) || (!iter->compare(
"--keep-mn2-output")) \
189 || (!iter->compare(
"-t")) || (!iter->compare(
"--title-from-data-file")) \
190 || (!iter->compare(
"-e")) || (!iter->compare(
"--estimateN0")) \
191 || (!iter->compare(
"-y") || (!iter->compare(
"--yaml"))) \
192 || (!iter->compare(
"-p")) || (!iter->compare(
"--per-run-block-chisq")) \
193 || (!iter->compare(
"data")) || (!iter->substr(0,4).compare(
"msr-")) || (!iter->compare(
"global")) \
194 || (!iter->compare(
"global+")) || (!iter->compare(
"global+!")) || (!iter->compare(
"new")) \
195 || !iter->compare(
"paramList") )
197 else if (!iter->substr(0,2).compare(
"-o")) {
199 if (!iter->compare(
"-o")) {
200 if (++iter == arg.end())
228 std::string outputFile;
230 outputFile =
"out.db";
232 outputFile =
"out.dat";
234 std::vector<std::string>::iterator iterNext(arg.begin());
235 for (std::vector<std::string>::iterator iter(arg.begin()); iter != arg.end(); ++iter) {
237 if (!iter->substr(0,2).compare(
"-o")) {
238 if (!iter->compare(
"-o")) {
239 if ((iterNext != arg.end()) && (iterNext->compare(
"header")) && (iterNext->compare(
"noheader")) && (iterNext->compare(
"nosummary")) \
240 && (iterNext->substr(0,3).compare(
"fit")) && (iterNext->compare(
"-k")) && (iterNext->compare(
"-t")) \
241 && (iterNext->compare(
"-e")) && (iterNext->compare(
"-p")) \
242 && (iterNext->compare(
"data")) && (iterNext->substr(0,3).compare(
"msr")) && (iterNext->compare(
"global")) \
243 && (iterNext->compare(
"global+")) && (iterNext->compare(
"global+!")) && (iterNext->compare(
"new"))) {
244 outputFile = *iterNext;
249 std::cout << std::endl;
250 std::cout <<
">> msr2data: **WARNING** You did not specify an output file! The default one (" << outputFile <<
") will be used." << std::endl;
255 outputFile = iter->substr(2);
280 std::vector<std::string>::iterator iter;
281 iter = find(arg.begin(), arg.end(), s);
283 if (iter != arg.end()) {
310 std::vector<std::string>::iterator iter(arg.begin());
311 while (iter != arg.end()) {
312 if (!iter->compare(
"fit")) {
318 iter = arg.erase(iter);
320 else if (!iter->substr(0,4).compare(
"fit-")) {
325 std::string::size_type loc = s.rfind(
'!');
326 if (loc != std::string::npos) {
333 temp = boost::lexical_cast<int>(s);
336 catch(boost::bad_lexical_cast &) {
363 for (std::vector<std::string>::iterator iter(arg.begin()); iter != arg.end(); ++iter) {
364 if (!iter->substr(0,4).compare(
"msr-")) {
367 temp = boost::lexical_cast<int>(s);
370 catch(boost::bad_lexical_cast &) {
392 for (
unsigned int i=0; i<arg.size(); i++) {
393 if (!arg[i].compare(
"paramList")) {
404 if (idx == arg.size()) {
405 std::cerr << std::endl <<
"**ERROR** found paramList without any arguments!" << std::endl;
411 std::vector<std::string> str;
412 unsigned int idx_end=0;
413 size_t pos=std::string::npos;
414 for (
unsigned int i=idx; i<arg.size(); i++) {
415 pos = arg[i].find(
"-");
419 }
else if (pos != std::string::npos) {
420 boost::split(str, arg[i], boost::is_any_of(
"-"));
421 if (str.size() != 2) {
422 std::cerr << std::endl <<
"**ERROR** found token " << arg[i] <<
" in paramList command which cannot be handled." << std::endl;
426 if (!str[0].compare(
"fit") || !str[0].compare(
"msr")) {
431 std::cerr << std::endl <<
"**ERROR** found token " << arg[i] <<
" in paramList command which cannot be handled." << std::endl;
435 unsigned int start=boost::lexical_cast<unsigned int>(str[0]);
436 unsigned int end=boost::lexical_cast<unsigned int>(str[1]);
437 for (
unsigned int j=start; j<=end; j++)
438 paramList.push_back(j);
440 paramList.push_back(boost::lexical_cast<unsigned int>(arg[i]));
447 idx_end = arg.size();
450 arg.erase(arg.begin()+idx-1, arg.begin()+idx_end);
453 for (
unsigned int i=0; i<paramList.size(); i++) {
454 for (
unsigned int j=i+1; j<paramList.size(); j++) {
455 if (paramList[i] == paramList[j]) {
456 std::cerr << std::endl <<
"**ERROR** the parameter list numbers have to be unique. Found " << paramList[i] <<
" at least 2 times." << std::endl;
463 return paramList.size();
478int main(
int argc,
char *argv[])
482 if (!strcmp(argv[1],
"--help")) {
485 }
else if (!strcmp(argv[1],
"--version")) {
488 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;
490 std::cout << std::endl <<
"msr2data version: " << PACKAGE_VERSION <<
" (" << BUILD_TYPE <<
"), ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl;
494 std::cout << std::endl <<
"msr2data git-branch: " << GIT_BRANCH <<
", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl;
496 std::cout << std::endl <<
"msr2data version: unknown." << std::endl << std::endl;
513 std::vector<std::string> arg;
514 for (
int i(1); i<argc; ++i) {
515 arg.push_back(argv[i]);
519 std::vector<unsigned int> run_vec;
520 std::string run_list;
521 std::string msrExtension;
522 std::vector<unsigned int> param_vec;
525 if (arg[0].at(0) ==
'[') {
528 unsigned int firstRunNumberInArg(0), lastRunNumberInArg(0);
529 unsigned int rightbracket(std::numeric_limits<unsigned int>::max());
531 if (!arg[0].compare(
"["))
532 firstRunNumberInArg = 1;
534 arg[0]=arg[0].substr(1);
536 for (
unsigned int i(firstRunNumberInArg); i<arg.size(); ++i) {
537 std::string::size_type loc = arg[i].rfind(
']');
538 if ( loc != std::string::npos ) {
540 if (!arg[i].compare(
"]") && i > 0)
541 lastRunNumberInArg = i-1;
543 arg[i]=arg[i].substr(0,loc);
544 lastRunNumberInArg = i;
549 if (rightbracket == std::numeric_limits<unsigned int>::max()) {
550 std::cerr << std::endl;
551 std::cerr <<
">> msr2data: **ERROR** You used the list specification without closing bracket (])! Quitting now." << std::endl;
556 for (
unsigned int i(firstRunNumberInArg); i<=lastRunNumberInArg; ++i) {
557 run_list += arg[i] +
" ";
560 std::unique_ptr<PStringNumberList> nl = std::make_unique<PStringNumberList>(run_list);
561 std::string errorMsg(
"");
562 if (!nl->Parse(errorMsg)) {
563 std::cerr << std::endl;
564 std::cerr <<
">> msr2data: " << errorMsg <<
" - Quitting now." << std::endl;
568 run_vec = nl->GetList();
570 msrExtension = arg[rightbracket + 1];
572 std::vector<std::string>::iterator iter(arg.begin());
573 for (
unsigned int i(0); i<rightbracket + 2; ++i) {
581 if (argOneIsNumber && argTwoIsNumber) {
584 if (arg.size() < 3) {
585 std::cerr << std::endl;
586 std::cerr <<
">> msr2data: **ERROR** No msr-file extension specified! Quitting now..." << std::endl;
592 run_vec.push_back(boost::lexical_cast<unsigned int>(arg[0]));
593 run_vec.push_back(boost::lexical_cast<unsigned int>(arg[1]));
595 msrExtension = arg[2];
597 std::vector<std::string>::iterator iter(arg.begin());
598 for (
unsigned int i(0); i < 3; i++) {
602 }
else if (argOneIsNumber && !argTwoIsNumber) {
604 run_vec.push_back(boost::lexical_cast<unsigned int>(arg[0]));
605 msrExtension = arg[1];
607 std::vector<std::string>::iterator iter(arg.begin());
608 for (
unsigned int i(0); i < 2; i++) {
615 msrExtension = arg[1];
617 std::vector<std::string>::iterator iter(arg.begin());
618 for (
unsigned int i(0); i < 2; i++) {
625 catch(boost::bad_lexical_cast &) {
626 std::cerr << std::endl;
627 std::cerr <<
">> msr2data: **ERROR** At least one given run number is out of range! Quitting..." << std::endl;
635 if (noParamList == -1) {
642 if (!wrongArgument.empty()) {
643 std::cerr << std::endl;
644 std::cerr <<
">> msr2data: **ERROR** Unknown argument: " << wrongArgument <<
". Quitting..." << std::endl;
657 bool realOutput(
true);
658 if (!boost::algorithm::to_lower_copy(outputFile).compare(
"none"))
662 std::unique_ptr<PMsr2Data> msr2dataHandler = std::make_unique<PMsr2Data>(msrExtension);
668 status = msr2dataHandler->SetRunNumbers(run_vec);
671 status = msr2dataHandler->SetRunNumbers(run_vec[0], run_vec[1]);
674 status = msr2dataHandler->SetRunNumbers(run_vec[0]);
677 status = msr2dataHandler->SetRunNumbers(run_list);
680 std::cerr << std::endl;
681 std::cerr <<
">> msr2data: **ERROR** None of the possible run list specifications has been detected! Quitting now..." << std::endl;
686 std::cerr << std::endl;
687 std::cerr <<
">> msr2data: **ERROR** The run numbers are out of range! Quitting..." << std::endl;
689 }
else if (
status == -1) {
697 bool chainfit(
true), onlyInputCreation(
false);
698 std::string musrfitOptions;
703 std::cerr << std::endl;
704 std::cerr <<
">> msr2data: **ERROR** More than one fitting options are specified! Quitting..." << std::endl;
706 }
else if (temp == -3) {
707 std::cerr << std::endl;
708 std::cerr <<
">> msr2data: **ERROR** The given template has not a valid run number! Quitting..." << std::endl;
716 musrfitOptions.append(
"-k ");
718 musrfitOptions.append(
"-t ");
720 musrfitOptions.append(
"-e ");
722 musrfitOptions.append(
"-y ");
724 musrfitOptions.append(
"-p ");
730 if (onlyInputCreation) {
736 std::cerr << std::endl;
737 std::cerr <<
">> msr2data: **ERROR** The given template has not a valid run number! Quitting..." << std::endl;
744 unsigned int globalMode(0);
747 setNormalMode =
false;
750 setNormalMode =
false;
757 status = msr2dataHandler->DetermineRunNumberDigits(temp, setNormalMode);
759 status = msr2dataHandler->DetermineRunNumberDigits(msr2dataHandler->GetPresentRun(), setNormalMode);
767 status = msr2dataHandler->CheckRunNumbersInRange();
769 std::cerr << std::endl;
770 std::cerr <<
">> msr2data: **ERROR** At least one given run number is out of range! Quitting..." << std::endl;
774 bool writeSummary(
false);
775 unsigned int writeHeader(2);
780 std::unique_ptr<std::fstream> fileOutput;
798 fileOutput = std::make_unique<std::fstream>();
799 fileOutput->open(outputFile.c_str(), std::ios::in);
800 if (fileOutput->is_open()) {
801 std::cout << std::endl <<
">> msr2data: **INFO** Deleting output file " << outputFile << std::endl;
803 fileOutput->open(outputFile.c_str(), std::ios::out | std::ios::trunc);
806 std::cout << std::endl <<
">> msr2data: **INFO** Ignoring the 'new' option since " << outputFile <<
" does not exist yet." << std::endl;
808 if (writeHeader == 2) {
815 if (!setNormalMode) {
816 std::ostringstream strInfile;
817 strInfile << msr2dataHandler->GetPresentRun() <<
"+global" << msrExtension <<
".msr";
822 bool success(msr2dataHandler->PrepareGlobalInputFile(temp, strInfile.str(), globalMode));
825 std::cerr << std::endl <<
">> msr2data: **ERROR** Input file generation has not been successful! Quitting..." << std::endl;
831 if (!onlyInputCreation) {
833 std::string path(
"");
835 char *pathPtr(getenv(
"MUSRFITPATH"));
837 path = boost::lexical_cast<std::string>(pathPtr);
844 std::cerr << std::endl <<
">> msr2data: **WARNING** The MUSRFITPATH environment variable is not set!";
845 std::cerr << std::endl <<
">> msr2data: **WARNING** Please set it or at least ensure that musrfit can be found on the PATH!" << std::endl;
847 std::ostringstream oss;
848 oss << path <<
"musrfit" <<
" " << strInfile.str() <<
" " << musrfitOptions;
849 std::cout << std::endl <<
">> msr2data: **INFO** Calling " << oss.str() << std::endl;
850 if (system(oss.str().c_str()) == -1) {
851 std::cerr <<
"**ERROR** cmd: " << oss.str().c_str() <<
" failed." << std::endl;
859 status = msr2dataHandler->ParseXmlStartupFile();
863 status = msr2dataHandler->ReadMsrFile(strInfile.str());
871 status = msr2dataHandler->ReadRunDataFile();
873 unsigned int counter(0);
875 while (msr2dataHandler->GetPresentRun()) {
877 status = msr2dataHandler->WriteOutput(outputFile, param_vec, db, writeHeader, !setNormalMode, counter);
888 status = msr2dataHandler->ParseXmlStartupFile();
893 unsigned int oldtemp(0);
894 std::ostringstream strInfile;
896 while (msr2dataHandler->GetPresentRun()) {
899 strInfile << msr2dataHandler->GetPresentRun() << msrExtension <<
".msr";
905 if (firstrun || !chainfit)
906 success = msr2dataHandler->PrepareNewInputFile(temp,
false);
908 success = msr2dataHandler->PrepareNewInputFile(oldtemp,
false);
911 oldtemp = msr2dataHandler->GetPresentRun();
914 std::cerr << std::endl <<
">> msr2data: **ERROR** Input file generation has not been successful! Quitting..." << std::endl;
920 if (!onlyInputCreation) {
922 std::string path(
"");
924 char *pathPtr(getenv(
"MUSRFITPATH"));
926 path = boost::lexical_cast<std::string>(pathPtr);
933 std::cerr << std::endl <<
">> msr2data: **WARNING** The MUSRFITPATH environment variable is not set!";
934 std::cerr << std::endl <<
">> msr2data: **WARNING** Please set it or at least ensure that musrfit can be found on the PATH!" << std::endl;
936 std::ostringstream oss;
937 oss << path <<
"musrfit" <<
" " << strInfile.str() <<
" " << musrfitOptions;
938 std::string cmdStr = oss.str();
939 cmdStr.erase(std::remove(cmdStr.begin(), cmdStr.end(),
'\r'), cmdStr.end());
940 cmdStr.erase(std::remove(cmdStr.begin(), cmdStr.end(),
'\n'), cmdStr.end());
941 std::cout << std::endl <<
">> msr2data: **INFO** Calling " << cmdStr << std::endl;
942 if (system(cmdStr.c_str()) == -1) {
943 std::cerr <<
"**ERROR** cmd: " << cmdStr <<
" failed." << std::endl;
950 status = msr2dataHandler->ReadMsrFile(strInfile.str());
953 status = msr2dataHandler->WriteOutput(
"none", param_vec, db, writeHeader);
964 status = msr2dataHandler->ReadRunDataFile();
967 status = msr2dataHandler->WriteOutput(outputFile, param_vec, db, writeHeader);
980 fileOutput = std::make_unique<std::fstream>();
981 fileOutput->open(outputFile.c_str(), std::ios::in);
982 if (fileOutput->is_open()) {
984 fileOutput->open(outputFile.c_str(), std::ios::out | std::ios::app);
985 if (fileOutput->is_open()) {
986 *fileOutput << std::endl << std::endl;
989 std::cerr << std::endl <<
">> msr2data: **ERROR** The output file " << outputFile <<
" cannot be opened! Please check!";
990 std::cerr << std::endl;
993 std::cerr << std::endl <<
">> msr2data: **WARNING** No output has been written to the file " << outputFile <<
"!";
994 std::cerr << std::endl <<
">> msr2data: **WARNING** Please check the range of runs and the specified options!" << std::endl;
999 std::cout << std::endl <<
">> msr2data: **INFO** The following command line arguments have been specified but not been used: " << std::endl;
1000 std::cout <<
">> msr2data: **INFO**";
1001 for (
unsigned int i(0); i<arg.size(); ++i)
1002 std::cout <<
" " << arg[i];
1003 std::cout << std::endl;
1006 std::cout << std::endl <<
">> msr2data: done ..." << std::endl;
#define PMUSR_SUCCESS
Successful operation completion.
int main(int argc, char *argv[])
int msr2data_doInputCreation(std::vector< std::string > &arg, bool &inputOnly)
std::string msr2data_outputfile(std::vector< std::string > &arg, bool db=true)
std::string msr2data_validArguments(const std::vector< std::string > &arg)
int msr2data_doFitting(std::vector< std::string > &arg, bool &chainfit)
bool isNumber(const std::string &s)
bool msr2data_useOption(std::vector< std::string > &arg, const std::string &s)
int msr2data_paramList(std::vector< std::string > &arg, std::vector< unsigned int > ¶mList)