/* xfibresOptions.h Saad Jbabdi, Tim Behrens, Stam Sotiropoulos, FMRIB Image Analysis Group Copyright (C) 1999-2010 University of Oxford */ /* Part of FSL - FMRIB's Software Library http://www.fmrib.ox.ac.uk/fsl fsl@fmrib.ox.ac.uk Developed at FMRIB (Oxford Centre for Functional Magnetic Resonance Imaging of the Brain), Department of Clinical Neurology, Oxford University, Oxford, UK LICENCE FMRIB Software Library, Release 5.0 (c) 2012, The University of Oxford (the "Software") The Software remains the property of the University of Oxford ("the University"). The Software is distributed "AS IS" under this Licence solely for non-commercial use in the hope that it will be useful, but in order that the University as a charitable foundation protects its assets for the benefit of its educational and research purposes, the University makes clear that no condition is made or to be implied, nor is any warranty given or to be implied, as to the accuracy of the Software, or that it will be suitable for any particular purpose or for use under any specific conditions. Furthermore, the University disclaims all responsibility for the use which is made of the Software. It further disclaims any liability for the outcomes arising from using the Software. The Licensee agrees to indemnify the University and hold the University harmless from and against any and all claims, damages and liabilities asserted by third parties (including claims for negligence) which arise directly or indirectly from the use of the Software or the sale of any products based on the Software. No part of the Software may be reproduced, modified, transmitted or transferred in any form or by any means, electronic or mechanical, without the express permission of the University. The permission of the University is not required if the said reproduction, modification, transmission or transference is done without financial return, the conditions of this Licence are imposed upon the receiver of the product, and all original and amended source code is included in any transmitted product. You may be held legally responsible for any copyright infringement that is caused or encouraged by your failure to abide by these terms and conditions. You are not permitted under this Licence to use this Software commercially. Use for which any financial return is received shall be defined as commercial use, and includes (1) integration of all or part of the source code or the Software into a product for sale or license by or on behalf of Licensee to third parties or (2) use of the Software or any derivative of it for research with the final aim of developing software products for sale or license to a third party or (3) use of the Software or any derivative of it for research with the final aim of developing non-software products for sale or license to a third party, or (4) use of the Software to provide any service to an external organisation for which payment is received. If you are interested in using the Software commercially, please contact Isis Innovation Limited ("Isis"), the technology transfer company of the University, to negotiate a licence. Contact details are: innovation@isis.ox.ac.uk quoting reference DE/9564. */ #if !defined(xfibresOptions_h) #define xfibresOptions_h #include #include #include #include #include #include "utils/options.h" #include "utils/log.h" #include "utils/tracer_plus.h" //#include "newmatall.h" using namespace Utilities; namespace Xfibres { class xfibresOptions { public: static xfibresOptions& getInstance(); ~xfibresOptions() { delete gopt; } Option verbose; Option help; Option logdir; Option forcedir; Option datafile; Option maskfile; Option bvecsfile; Option bvalsfile; Option nfibres; Option modelnum; Option fudge; Option njumps; Option nburn; Option nburn_noard; Option sampleevery; Option updateproposalevery; Option seed; Option no_ard; Option all_ard; Option localinit; Option nonlin; Option cnonlin; Option rician; Option f0; Option ardf0; FmribOption grad_file; void parse_command_line(int argc, char** argv, Log& logger); private: xfibresOptions(); const xfibresOptions& operator=(xfibresOptions&); xfibresOptions(xfibresOptions&); OptionParser options; static xfibresOptions* gopt; }; inline xfibresOptions& xfibresOptions::getInstance(){ if(gopt == NULL) gopt = new xfibresOptions(); return *gopt; } inline xfibresOptions::xfibresOptions() : verbose(string("-V,--verbose"), false, string("switch on diagnostic messages"), false, no_argument), help(string("-h,--help"), false, string("display this message"), false, no_argument), logdir(string("--ld,--logdir"), string("logdir"), string("log directory (default is logdir)"), false, requires_argument), forcedir(string("--forcedir"),false,string("Use the actual directory name given - i.e. don't add + to make a new directory"),false,no_argument), datafile(string("-k,--data,--datafile"), string("data"), string("data file"), true, requires_argument), maskfile(string("-m,--mask, --maskfile"), string("nodif_brain_mask"), string("mask file"), true, requires_argument), bvecsfile(string("-r,--bvecs"), string("bvecs"), string("b vectors file"), true, requires_argument), bvalsfile(string("-b,--bvals"), string("bvals"), string("b values file"), true, requires_argument), nfibres(string("--nf,--nfibres"),1, string("Maximum number of fibres to fit in each voxel (default 1)"), false,requires_argument), modelnum(string("--model"),1, string("Which model to use. 1=mono-exponential (default and required for single shell). 2=continous exponential (for multi-shell experiments)"), false,requires_argument), fudge(string("--fudge"),1, string("ARD fudge factor"), false,requires_argument), njumps(string("--nj,--njumps"),5000, string("Num of jumps to be made by MCMC (default is 5000)"), false,requires_argument), nburn(string("--bi,--burnin"),0, string("Total num of jumps at start of MCMC to be discarded (default is 0)"), false,requires_argument), nburn_noard(string("--bn,--burnin_noard"),0, string("num of burnin jumps before the ard is imposed (default is 0)"), false,requires_argument), sampleevery(string("--se,--sampleevery"),1, string("Num of jumps for each sample (MCMC) (default is 1)"), false,requires_argument), updateproposalevery(string("--upe,--updateproposalevery"),40, string("Num of jumps for each update to the proposal density std (MCMC) (default is 40)"), false,requires_argument), seed(string("--seed"),8665904,string("seed for pseudo random number generator"), false,requires_argument), no_ard(string("--noard"),false,string("Turn ARD off on all fibres"), false,no_argument), all_ard(string("--allard"),false,string("Turn ARD on on all fibres"), false,no_argument), localinit(string("--nospat"),false,string("Initialise with tensor, not spatially"), false,no_argument), nonlin(string("--nonlinear"),false,string("Initialise with nonlinear fitting"), false,no_argument), cnonlin(string("--cnonlinear"),false,string("Initialise with constrained nonlinear fitting"), false,no_argument), rician(string("--rician"),false,string("Use Rician noise modelling"),false,no_argument), f0(string("--f0"),false,string("Add to the model an unattenuated signal compartment"),false,no_argument), ardf0(string("--ardf0"),false,string("Use ard on f0"),false,no_argument), grad_file(string("--gradnonlin"), string("gradnonlin"), string("Gradient Nonlinearity Tensor file"), false, requires_argument), options("xfibres","xfibres --help (for list of options)\n") { try { options.add(verbose); options.add(help); options.add(logdir); options.add(forcedir); options.add(datafile); options.add(maskfile); options.add(bvecsfile); options.add(bvalsfile); options.add(nfibres); options.add(modelnum); options.add(fudge); options.add(njumps); options.add(nburn); options.add(nburn_noard); options.add(sampleevery); options.add(updateproposalevery); options.add(seed); options.add(no_ard); options.add(all_ard); options.add(localinit); options.add(nonlin); options.add(cnonlin); options.add(rician); options.add(f0); options.add(ardf0); options.add(grad_file); } catch(X_OptionError& e) { options.usage(); cerr << endl << e.what() << endl; } catch(std::exception &e) { cerr << e.what() << endl; } } } #endif