From a00f10fd48a1de31c3ac923c2106969f84e831e0 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Mon, 09 Mar 2015 11:09:31 +0000 Subject: [PATCH] Documented energy.c --- src/io.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/io.c b/src/io.c index ead2de3..f913762 100644 --- a/src/io.c +++ b/src/io.c @@ -454,6 +454,7 @@ {"dump-filename", required_argument,0, 'f'}, {"tape-options",required_argument,0,'c'}, {"tape-template", required_argument,0,0}, + {"dump-from-vtk",required_argument,0,0}, {0, 0, 0, 0} }; /* getopt_long stores the option index here. */ @@ -480,6 +481,9 @@ if(strcmp(long_options[option_index].name,"tape-template")==0){ strcpy(command_line_args.tape_templatefull,optarg); } + if(strcmp(long_options[option_index].name,"dump-from-vtk")==0){ + strcpy(command_line_args.dump_from_vtk,optarg); + } break; case 'c': -- Gitblit v1.9.3