Index: fact/tools/rootmacros/PulseTemplates/rootfilehandler.C
===================================================================
--- fact/tools/rootmacros/PulseTemplates/rootfilehandler.C	(revision 14816)
+++ fact/tools/rootmacros/PulseTemplates/rootfilehandler.C	(revision 14817)
@@ -109,8 +109,8 @@
 
 void
-SaveHistograms(
+SaveList(
         TString         loc_fname,
         TString         subdirectory,
-        TList*          histList,
+        TList*          list,
         bool            saveResults,
         int             verbosityLevel
@@ -119,7 +119,7 @@
 
     if (!saveResults) return;
-    if (histList==NULL) return;
+    if (list==NULL) return;
     if (verbosityLevel > 2) cout << endl
-                                 << "...saving pixel histograms to subdirectory: "
+                                 << "...saving pixel's list to subdirectory: "
                                  << subdirectory << endl ;
 
@@ -128,5 +128,5 @@
 
     if (verbosityLevel > 2) cout << endl
-                                 << "...writing histogram list to root file "
+                                 << "...writing list to root file "
                                  << endl ;
     gFile->mkdir(subdirectory.Data());
@@ -136,10 +136,10 @@
         gDirectory->pwd();
     }
-//    cout << histList;
-    for ( int idx = 0; idx < histList->GetSize(); idx++)
-    {
-        histList->At(idx)->Write();
-    }
-//    gFile->WriteTObject(histList, subdirectory); // write the histograms into one Key in the top level directory
+//    cout << list;
+    for ( int idx = 0; idx < list->GetSize(); idx++)
+    {
+        list->At(idx)->Write();
+    }
+//    gFile->WriteTObject(list, subdirectory); // write the histograms into one Key in the top level directory
     gFile->cd("..");
 
Index: fact/tools/rootmacros/PulseTemplates/rootfilehandler.h
===================================================================
--- fact/tools/rootmacros/PulseTemplates/rootfilehandler.h	(revision 14816)
+++ fact/tools/rootmacros/PulseTemplates/rootfilehandler.h	(revision 14817)
@@ -16,5 +16,5 @@
 
 void
-SaveHistograms( TString ,TString, TList*, bool, int );
+SaveList( TString ,TString, TList*, bool, int );
 
 TString
