From 0ee39cda7ef53b70ed466d0277d22913eddee689 Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@fe.uni-lj.si>
Date: Wed, 23 Apr 2014 17:20:36 +0000
Subject: [PATCH] in debuggingg ptrocedure

---
 src/general.h |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/general.h b/src/general.h
index 26e8b55..8165505 100644
--- a/src/general.h
+++ b/src/general.h
@@ -3,6 +3,7 @@
 
 #include<stdarg.h>
 #include<stdio.h>
+#include<gsl/gsl_complex.h>
 /* @brief This is a header file, defining general constants and structures.
   * @file header.h
   * @author Samo Penic
@@ -47,6 +48,8 @@
 #define TS_FAIL 1
 
 /* CONSTANTS */
+
+#define TS_ID_FILAMENT 1
 
 /* DATA TYPES */
 /** @brief Sets the default datatype for ts_double
@@ -166,10 +169,11 @@
     	ts_uint idx;
 	ts_vertex *vtx1;
 	ts_vertex *vtx2;
-    ts_double bond_length;
-    ts_double bond_length_dual;
-	ts_bool tainted;
+    	ts_double bond_length;
+    	ts_double bond_length_dual;
+	ts_bool tainted; //TODO: remove
 	ts_double energy;
+	ts_double x,y,z;
 };
 typedef struct ts_bond ts_bond;
 
@@ -212,12 +216,14 @@
     ts_double dcell;
     ts_double shift;
     ts_double max_occupancy;
+	ts_double dmin_interspecies;
 } ts_cell_list;
 
 
 typedef struct {
     ts_uint l;
     ts_double **ulm;
+    gsl_complex **ulmComplex;
     ts_double **sumUlm2;
     ts_uint N;
     ts_double **co;

--
Gitblit v1.9.3