Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
flotsam_cl.H
Go to the documentation of this file.
1 
2 
3 class FlotsamComLine : public IRAD::Util::ComLineObject
4 {
5 public:
6  FlotsamComLine(const char *args[])
7  : ComLineObject(args)
8  {};
9  void Initialize(){
10  AddOption('h',"help");
11  AddOption('v',"verb",1,"level");
12  AddOption('d',"debug");
13  AddOption('k',"checking");
14  AddOption('c',"config");
15  AddArgument("source",1);
16  AddArgument("timestamp",1);
17  AddArgument("target",1);
18  AddHelp("checking","Paranoid and insanely verbose dumping of all important arrays to Log.");
19  AddHelp("help","Prints this long version of help.");
20  AddHelp("verb","Makes the test more verbose. Default level is 1.");
21  AddHelp("config","Specifies the name of the configuration file.");
22  AddArgHelp("source","Specifies the name of the source data set.");
23  AddArgHelp("target","Specifies the name of the target grid file.");
24  AddArgHelp("timestamp","Specifies the timestamp on the source solution.");
25  std::ostringstream Ostr;
26  // Ostr << "Use fixed problem size in scalability analysis. Only makes"
27  // << "\n\t\tsense when scalability mode is enabled.";
28  // Ostr.str("");
29  Ostr << "Rocflo tool for transferring a solution to another mesh.";
30  _description.assign(Ostr.str());
31  };
32 };
33 
FlotsamComLine(const char *args[])
Definition: flotsam_cl.H:6
void Initialize()
Definition: flotsam_cl.H:9