Difference between revisions of "Effective Analysis Programming Part 2"

From Gridkaschool
m (exercise 2: read paramerters)
m (C++ Templates)
Line 4: Line 4:
   
 
====exercise 2: read paramerters====
 
====exercise 2: read paramerters====
  +
The library ''readparamertes'' can be used to read values from a text file like:
 
 
 
<source lang="bash">
 
<source lang="bash">
 
# GKS 2013
 
# GKS 2013
Line 13: Line 12:
 
</source>
 
</source>
   
  +
The following code is an example how to use '''readparameters''':
 
 
<source lang="cpp">
 
<source lang="cpp">
 
#define MAIN_CPP
 
#define MAIN_CPP

Revision as of 17:21, 23 August 2013

C++ Templates

exercise 1: pair

exercise 2: read paramerters

The library readparamertes can be used to read values from a text file like:

# GKS 2013
answer 42
parser_test "\\\"" "#" #should result in \" and #
useful yes

The following code is an example how to use readparameters:

#define MAIN_CPP

#include <iostream>
#include <exception>
#include "readparameters.h"

using namespace std;

int main(int argc,char **argv){ 
  //check arguments
  if (argc!=2) {
    cerr<<"Usage: ./params <paramfile>"<<endl;
    return 1;
  } 
  
  //get input filename from parameter file
  int answer;
  vector<string> v;
  try { 
      readparameters rp(argv[1]);
      answer = rp.get<int>("answer");
      v=rp.get_vector<string>("parser_test");
      cout<<answer<<endl;
      rp.print_tabular(); //debug output
      rp.get<long>("Atlantis"); //exception
      
  }
  catch (exception& e) {
      cerr<<e.what()<<endl;
      return 1;
  }

  return 0;
}