Trisurf Monte Carlo simulator
Samo Penic
2019-10-16 b8fc1a87ddbf138e1a710fbc3c164219f30799fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* vim: set ts=4 sts=4 sw=4 noet : */
#ifndef _H_RESTORE
#define _H_RESTORE
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>
#include "general.h"
ts_vesicle *parseDump(char *dumpfname);
ts_vesicle *parseTrisurfTag(xmlDocPtr doc, xmlNodePtr cur);
ts_bool setGlobalTapeTXTfromTapeTag(xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseTrisurfVtxn(ts_vertex_list *vlist, xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseTrisurfTria(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseTrisurfTriaNeigh(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseTrisurfTristar(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseXMLPointData(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseXMLVertexPosition(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseXMLBonds(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseTrisurfNucleus(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseTrisurfConstantVolume(xmlDocPtr doc, xmlNodePtr cur);
ts_bool parseTrisurfConstantArea(xmlDocPtr doc, xmlNodePtr cur);
#endif