Index: trunk/MagicSoft/Mars/mbase/MParList.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MParList.cc	(revision 666)
+++ trunk/MagicSoft/Mars/mbase/MParList.cc	(revision 667)
@@ -24,20 +24,21 @@
 ClassImp(MParList)
 
-MParList::MParList()
+MParList::MParList(const char *name, const char *title)
 {
-  //
-  //  default constructor 
-  //  creates an empty list 
-  //
-
+    //
+    //  default constructor
+    //  creates an empty list
+    //
+    *fName  = name  ? name  : "MParList";
+    *fTitle = title ? title : "List of Parameter Containers";
 }
 
 MParList::MParList(MParList &ts)
 {
-  //
-  // copy constructor 
-  //
+    //
+    // copy constructor
+    //
 
-  fContainer.AddAll(&ts.fContainer);
+    fContainer.AddAll(&ts.fContainer);
 }
 
Index: trunk/MagicSoft/Mars/mbase/MParList.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MParList.h	(revision 666)
+++ trunk/MagicSoft/Mars/mbase/MParList.h	(revision 667)
@@ -29,5 +29,5 @@
 
 public:
-    MParList();
+    MParList(const char *name=NULL, const char *title=NULL);
     MParList(MParList &ts);
 
