Moved all global variables to separate file and defined extern keyword where appropriate
2 files added
14 files modified
| | |
| | | #------------- LIBS ---------- |
| | | |
| | | lib_LTLIBRARIES= libtrisurf.la |
| | | libtrisurf_la_SOURCES= general.c vertex.c bond.c triangle.c cell.c vesicle.c initial_distribution.c io.c dumpstate.c frame.c energy.c timestep.c vertexmove.c bondflip.c poly.c stats.c sh.c shcomplex.c constvol.c snapshot.c restore.c cluster.c |
| | | libtrisurf_la_SOURCES= general.c vertex.c bond.c triangle.c cell.c vesicle.c initial_distribution.c io.c dumpstate.c frame.c energy.c timestep.c vertexmove.c bondflip.c poly.c stats.c sh.c shcomplex.c constvol.c snapshot.c restore.c cluster.c globals.c |
| | | #libtrisurf_la_CPPFLAGS = ${libxml2_CFLAGS} |
| | | libtrisurf_la_LIBADD=${libxml2_LIBS} |
| | | pkginclude_HEADERS=general.h vertex.h bond.h triangle.h cell.h vesicle.h initial_distribution.h io.h dumpstate.h frame.h energy.h timestep.h vertexmove.h bondflip.h poly.h stats.h sh.h shcomplex.h constvol.h snapshot.h restore.h cluster.h |
| | | pkginclude_HEADERS=general.h vertex.h bond.h triangle.h cell.h vesicle.h initial_distribution.h io.h dumpstate.h frame.h energy.h timestep.h vertexmove.h bondflip.h poly.h stats.h sh.h shcomplex.h constvol.h snapshot.h restore.h cluster.h globals.h |
| | |
| | | #include<stdio.h> |
| | | #include<string.h> |
| | | #include "constvol.h" |
| | | #include "globals.h" |
| | | |
| | | ts_bool single_bondflip_timestep(ts_vesicle *vesicle, ts_bond *bond, ts_double *rn){ |
| | | /*c Vertex and triangle (lm and lp) indexing for bond flip: |
| | |
| | | #include <fcntl.h> |
| | | #include <errno.h> |
| | | #include <string.h> |
| | | |
| | | #include "globals.h" |
| | | ts_uint ts_fprintf(FILE *fd, char *fmt, ...){ |
| | | if(quiet) return TS_SUCCESS; |
| | | va_list ap; |
| | |
| | | ts_cluster **cluster; |
| | | } ts_cluster_list; |
| | | |
| | | |
| | | /* GLOBAL VARIABLES */ |
| | | |
| | | int quiet; |
| | | ts_double V0; |
| | | ts_double A0; |
| | | ts_double epsvol; |
| | | ts_double epsarea; |
| | | /* FUNCTIONS */ |
| | | |
| | | /** Non-fatal error function handler: |
New file |
| | |
| | | #include "general.h" |
| | | #include "io.h" |
| | | #include "globals.h" |
| | | |
| | | /* GLOBAL VARIABLES */ |
| | | |
| | | int quiet; |
| | | ts_double V0; |
| | | ts_double A0; |
| | | ts_double epsvol; |
| | | ts_double epsarea; |
| | | ts_args command_line_args; |
| | | int force_from_tape; |
| | | char tapetxt[128000]; //stores text file of the tape |
| | | |
New file |
| | |
| | | #ifndef __GLOBALS |
| | | #define __GLOBALS |
| | | /* GLOBAL VARIABLES */ |
| | | #include "general.h" |
| | | #include "io.h" |
| | | extern int quiet; |
| | | extern ts_double V0; |
| | | extern ts_double A0; |
| | | extern ts_double epsvol; |
| | | extern ts_double epsarea; |
| | | extern ts_args command_line_args; |
| | | extern int force_from_tape; |
| | | extern char tapetxt[128000]; //stores text file of the tape |
| | | #endif |
| | |
| | | |
| | | /* vim: set ts=4 sts=4 sw=4 noet : */ |
| | | #include "general.h" |
| | | #include "globals.h" |
| | | #include<stdio.h> |
| | | #include "io.h" |
| | | #include "vertex.h" |
| | |
| | | static char prefixname[1024]; |
| | | static ts_bool restore=0; |
| | | static char tape[1024]; */ |
| | | int force_from_tape; |
| | | char tapetxt[128000]; //stores text file of the tape |
| | | |
| | | typedef struct{ |
| | | ts_int force_from_tape; |
| | | ts_int reset_iteration_count; |
| | |
| | | char dump_from_vtk[1024]; |
| | | } ts_args; |
| | | |
| | | ts_args command_line_args; |
| | | |
| | | ts_bool parse_args(int argc, char **argv); |
| | | |
| | |
| | | #include "shcomplex.h" |
| | | #include "dumpstate.h" |
| | | #include "restore.h" |
| | | |
| | | #include "globals.h" |
| | | #include <fcntl.h> |
| | | /** Entrance function to the program |
| | | * @param argv is a number of parameters used in program call (including the program name |
| | |
| | | #include "initial_distribution.h" |
| | | #include "io.h" |
| | | #include <math.h> |
| | | #include "globals.h" |
| | | |
| | | ts_vesicle *parseDump(char *dumpfname) { |
| | | xmlDocPtr doc; |
| | |
| | | #include "sh.h" |
| | | #include "io.h" |
| | | #include <string.h> |
| | | |
| | | #include "globals.h" |
| | | |
| | | ts_spharm *sph_init(ts_vertex_list *vlist, ts_uint l){ |
| | | ts_uint j,i; |
| | |
| | | #include<config.h> |
| | | #include <time.h> |
| | | #include "io.h" |
| | | #include "globals.h" |
| | | |
| | | /* a helper function that utilizes ts_string data structure and performs same as sprintf */ |
| | | ts_uint ts_sprintf(ts_string *str, char *fmt, ...){ |
| | | va_list ap; |
| | |
| | | #include<math.h> |
| | | //#include "io.h" |
| | | #include "general.h" |
| | | #include "globals.h" |
| | | #include "timestep.h" |
| | | #include "vertexmove.h" |
| | | #include "bondflip.h" |
| | |
| | | #include <snapshot.h> |
| | | #include<gsl/gsl_complex.h> |
| | | #include<gsl/gsl_complex_math.h> |
| | | |
| | | #include "globals.h" |
| | | |
| | | ts_vesicle *restoreVesicle(char *filename){ |
| | | ts_vesicle *vesicle = parseDump(filename); |
| | |
| | | #include<gsl/gsl_complex.h> |
| | | #include<gsl/gsl_complex_math.h> |
| | | #include<stdio.h> |
| | | |
| | | #include "globals.h" |
| | | ts_vesicle *restoreVesicle(char *filename){ |
| | | ts_vesicle *vesicle = parseDump(filename); |
| | | return vesicle; |
| | |
| | | #include "vertexmove.h" |
| | | #include <string.h> |
| | | #include "constvol.h" |
| | | #include "globals.h" |
| | | |
| | | ts_bool single_verticle_timestep(ts_vesicle *vesicle,ts_vertex *vtx,ts_double *rn){ |
| | | ts_uint i; |