Files
ResInsight/ThirdParty/Ert/devel/libecl/applications/key_list.c
Magne Sjaastad 04006370ac Added ERT as source code based on https://github.com/Ensembles/ert/ and commit 7b53b5f61f5b47e8169b72098b562071df394bc3
This is SVN commit 4117
Updated ResInsight cmakelists to build ERT and link directly
Removed precompiled ERT binaries
p4#: 20183
2013-01-17 13:33:59 +01:00

56 lines
1.6 KiB
C

/*
Copyright (C) 2011 Statoil ASA, Norway.
The file 'key_list.c' is part of ERT - Ensemble based Reservoir Tool.
ERT is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ERT is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
for more details.
*/
#include <ecl_kw.h>
#include <stdlib.h>
#include <ecl_sum.h>
#include <util.h>
#include <string.h>
#include <signal.h>
#include <stringlist.h>
int main(int argc , char ** argv) {
const char * data_file = argv[1];
ecl_sum_type * ecl_sum = ecl_sum_fread_alloc_case( data_file , ":");
if (ecl_sum != NULL) {
stringlist_type * keys = stringlist_alloc_new();
if (argc == 2)
ecl_sum_select_matching_general_var_list( ecl_sum , "*" , keys);
else {
for (int iarg = 2; iarg < argc; iarg++) {
printf("Matchging:%s \n",argv[iarg]);
ecl_sum_select_matching_general_var_list( ecl_sum , argv[iarg] , keys);
}
}
stringlist_sort( keys , NULL );
{
int i;
for (i=0; i < stringlist_get_size( keys ); i++)
printf("%s \n",stringlist_iget( keys , i ));
}
stringlist_free( keys );
ecl_sum_free(ecl_sum);
} else
fprintf(stderr,"key_list.x: No summary data found for case:%s\n", data_file );
}