00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef DH_UTILS
00034 #define DH_UTILS
00035
00036
00037
00038 #include <stdio.h>
00039 #include <stdlib.h>
00040 #include <unistd.h>
00041 #include <string.h>
00042 #include <ctype.h>
00043 #include <limits.h>
00044 #include <time.h>
00045
00046 #ifdef MD_USE_GSL
00047
00048 #include <gsl/gsl_rng.h>
00049 #include <gsl/gsl_randist.h>
00050
00051 #endif
00052
00053 #include "memhandler.h"
00054
00055
00056
00057 #define M_MAX_PDB_NAME_LEN 200
00058
00059 #define M_SIGN 1
00060 #define M_NO_SIGN 0
00061
00062
00063 #ifdef MD_USE_GSL
00064
00065 #define M_GEN_MTWISTER gsl_rng_mt19937
00066 #define M_GEN_GFSR4 gsl_rng_gfsr4
00067 #define M_GEN_TAUS gsl_rng_taus2
00068 #define M_GEN_RANLXS0 gsl_rng_ranlxs0
00069 #define M_GEN_RANLXS1 gsl_rng_ranlxs1
00070
00071 #endif
00072
00073
00074
00075 typedef struct tab_str
00076 {
00077 char **t_str ;
00078 int nb_str ;
00079
00080 } tab_str ;
00081
00082
00083
00084
00085 int str_is_number(const char *str, const int sign) ;
00086 int str_is_float(const char *str, const int sign) ;
00087 void str_trim(char *str) ;
00088 tab_str* str_split(const char *str, const int sep) ;
00089
00090 tab_str* f_readl(const char *fpath, int nchar_max) ;
00091 void free_tab_str(tab_str *tstr) ;
00092 void print_tab_str(tab_str* strings) ;
00093
00094 int in_tab(int *tab, int size, int val) ;
00095 int index_of(int *tab, int size, int val) ;
00096
00097
00098 void remove_ext(char *str) ;
00099 void remove_path(char *str) ;
00100 void extract_ext(char *str, char *dest) ;
00101 void extract_path(char *str, char *dest) ;
00102
00103 void start_rand_generator(void) ;
00104 float rand_uniform(float min, float max) ;
00105
00106 FILE* fopen_pdb_check_case(char *name, const char *mode) ;
00107
00108 float float_get_min_in_2D_array(float **t,size_t n,int col);
00109 float float_get_max_in_2D_array(float **t,size_t n,int col);
00110
00111 #endif