Index: /issm/trunk/src/c/objects/Elements/Beam.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Beam.cpp	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Beam.cpp	(revision 3783)
@@ -24,17 +24,4 @@
 	this->parameters=NULL;
 	return;
-}
-/*}}}*/
-/*FUNCTION Beam::Beam(int id, int* node_ids, int matice_id, int matpar_id){{{1*/
-Beam::Beam(int beam_id,int* beam_node_ids, int beam_matice_id, int beam_matpar_id):
-	hnodes(beam_node_ids,2),
-	hmatice(&beam_matice_id,1),
-	hmatpar(&beam_matpar_id,1)
-{
-
-	/*all the initialization has been done by the initializer, just fill in the id: */
-	this->id=beam_id;
-	this->parameters=NULL;
-	this->inputs=new Inputs();
 }
 /*}}}*/
Index: /issm/trunk/src/c/objects/Elements/Beam.h
===================================================================
--- /issm/trunk/src/c/objects/Elements/Beam.h	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Beam.h	(revision 3783)
@@ -36,5 +36,4 @@
 		/*constructors, destructors: {{{1*/
 		Beam();
-		Beam(int beam_id,int* beam_node_ids, int beam_matice_id, int beam_matpar_id);
 		Beam(int beam_id,Hook* beam_hnodes, Hook* beam_hmatice, Hook* beam_hmatpar, Parameters* beam_parameters, Inputs* beam_inputs);
 		Beam(int beam_id,int i, IoModel* iomodel);
Index: /issm/trunk/src/c/objects/Elements/Penta.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Penta.cpp	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Penta.cpp	(revision 3783)
@@ -23,18 +23,4 @@
 	this->inputs=NULL;
 	this->parameters=NULL;
-}
-/*}}}*/
-/*FUNCTION Penta::Penta(int penta_id,int* penta_node_ids, int penta_matice_id, int penta_matpar_id) {{{1*/
-Penta::Penta(int penta_id,int* penta_node_ids, int penta_matice_id, int penta_matpar_id):
-	hnodes(penta_node_ids,6),
-	hmatice(&penta_matice_id,1),
-	hmatpar(&penta_matpar_id,1)
-{
-
-	/*all the initialization has been done by the initializer, just fill in the id: */
-	this->id=penta_id;
-	this->parameters=NULL;
-	this->inputs=new Inputs();
-
 }
 /*}}}*/
Index: /issm/trunk/src/c/objects/Elements/Penta.h
===================================================================
--- /issm/trunk/src/c/objects/Elements/Penta.h	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Penta.h	(revision 3783)
@@ -36,5 +36,4 @@
 		/*FUNCTION constructors, destructors {{{1*/
 		Penta();
-		Penta(int penta_id,int* penta_node_ids, int penta_matice_id, int penta_matpar_id);
 		Penta(int penta_id,Hook* penta_hnodes, Hook* penta_hmatice, Hook* penta_hmatpar, Parameters* penta_parameters, Inputs* inputs);
 		Penta(int penta_id,int i, IoModel* iomodel);
Index: /issm/trunk/src/c/objects/Elements/Sing.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Sing.cpp	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Sing.cpp	(revision 3783)
@@ -23,19 +23,4 @@
 	this->inputs=NULL;
 	this->parameters=NULL;
-	return;
-}
-/*}}}*/
-/*FUNCTION Sing::Sing(int sing_id,int* sing_node_ids, int sing_matice_id, int sing_matpar_id, int sing_numpar_id) {{{1*/
-Sing::Sing(int sing_id,int* sing_node_ids, int sing_matice_id, int sing_matpar_id):
-	hnodes(sing_node_ids,1),
-	hmatice(&sing_matice_id,1),
-	hmatpar(&sing_matpar_id,1)
-{
-
-	/*all the initialization has been done by the initializer, just fill in the id: */
-	this->id=sing_id;
-	this->parameters=NULL;
-	this->inputs=new Inputs();
-
 	return;
 }
Index: /issm/trunk/src/c/objects/Elements/Sing.h
===================================================================
--- /issm/trunk/src/c/objects/Elements/Sing.h	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Sing.h	(revision 3783)
@@ -36,5 +36,4 @@
 		/*constructors, destructors: {{{1*/
 		Sing();
-		Sing(int sing_id,int* sing_node_ids, int sing_matice_id, int sing_matpar_id);
 		Sing(int sing_id,Hook* sing_hnodes, Hook* sing_hmatice, Hook* sing_hmatpar, Parameters* sing_parameters,Inputs* sing_inputs);
 		Sing(int sing_id, int i, IoModel* iomodel);
Index: /issm/trunk/src/c/objects/Elements/Tria.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Tria.cpp	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Tria.cpp	(revision 3783)
@@ -26,18 +26,4 @@
 	this->inputs=NULL;
 	this->parameters=NULL;
-}
-/*}}}*/
-/*FUNCTION Tria::Tria(int id, int* node_ids, int matice_id, int matpar_id){{{1*/
-Tria::Tria(int tria_id,int* tria_node_ids, int tria_matice_id, int tria_matpar_id): 
-	hnodes(tria_node_ids,3),
-	hmatice(&tria_matice_id,1),
-	hmatpar(&tria_matpar_id,1)
-{
-
-	/*all the initialization has been done by the initializer, just fill in the id: */
-	this->id=tria_id;
-	this->parameters=NULL;
-	this->inputs=new Inputs();
-
 }
 /*}}}*/
Index: /issm/trunk/src/c/objects/Elements/Tria.h
===================================================================
--- /issm/trunk/src/c/objects/Elements/Tria.h	(revision 3782)
+++ /issm/trunk/src/c/objects/Elements/Tria.h	(revision 3783)
@@ -33,5 +33,4 @@
 		/*FUNCTION constructors, destructors {{{1*/
 		Tria();
-		Tria(int tria_id,int* tria_node_ids, int tria_matice_id, int tria_matpar_id);
 		Tria(int tria_id,Hook* tria_hnodes, Hook* tria_hmatice, Hook* tria_hmatpar, Parameters* parameters, Inputs* tria_inputs);
 		Tria(int tria_id,int i, IoModel* iomodel);
