Index: /issm/trunk-jpl/src/c/classes/FemModel.cpp
===================================================================
--- /issm/trunk-jpl/src/c/classes/FemModel.cpp	(revision 20361)
+++ /issm/trunk-jpl/src/c/classes/FemModel.cpp	(revision 20362)
@@ -735,13 +735,13 @@
 		xDelete<int>(this->analysis_type_list);
 
-		this->profiler = new Profiler();
-		this->loads = new Loads();
-		this->materials = new Materials();
-		this->parameters = new Parameters();
+		this->profiler    = new Profiler();
+		this->loads       = new Loads();
+		this->materials   = new Materials();
+		this->parameters  = new Parameters();
 		this->constraints = new Constraints();
-		this->results = new Results();
-		this->nodes = new Nodes();
-		this->vertices = new Vertices();
-		this->elements = new Elements();
+		this->results     = new Results();
+		this->nodes       = new Nodes();
+		this->vertices    = new Vertices();
+		this->elements    = new Elements();
 	}
 
Index: /issm/trunk-jpl/src/c/classes/Params/GenericParam.h
===================================================================
--- /issm/trunk-jpl/src/c/classes/Params/GenericParam.h	(revision 20361)
+++ /issm/trunk-jpl/src/c/classes/Params/GenericParam.h	(revision 20362)
@@ -46,5 +46,5 @@
                 void  Echo() {DeepEcho();};
                 int   Id(){ return -1; };
-                int   ObjectEnum() {return AdolcParamEnum;};
+                int   ObjectEnum() {return GenericParamEnum;};
 
                 // the "copy"  has to implement the base class abstract function
Index: /issm/trunk-jpl/src/c/datastructures/DataSet.cpp
===================================================================
--- /issm/trunk-jpl/src/c/datastructures/DataSet.cpp	(revision 20361)
+++ /issm/trunk-jpl/src/c/datastructures/DataSet.cpp	(revision 20362)
@@ -122,5 +122,5 @@
 
 		/*Go through our objects, and marshall them into the buffer: */
-		for ( obj=this->objects.begin() ; obj < this->objects.end(); obj++ ){
+		for( obj=this->objects.begin() ; obj < this->objects.end(); obj++ ){
 			obj_enum=(*obj)->ObjectEnum();
 			MARSHALLING(obj_enum);
@@ -241,4 +241,7 @@
 				this->AddObject(transparam);
 			}
+			else if(obj_enum==GenericParamEnum){
+				/*Skip for now (we don't want to Marhsall Comms*/
+			}
 			else if(obj_enum==MaticeEnum){
 				Matice* matice=NULL;
