diff --git a/examples/PARAM/52949/hcana.param b/examples/PARAM/52949/hcana.param
index e65329015dd4bc57ec3f13ad3c75735dec7c193c..5f0d147a16055f1e62fafc1d6003dc1d2f798a0a 100644
--- a/examples/PARAM/52949/hcana.param
+++ b/examples/PARAM/52949/hcana.param
@@ -1 +1,4 @@
 #include "PARAM/hcana.param"
+
+# New calorimeter debug parameter.
+hdbg_init_cal = 0
diff --git a/src/THcShower.cxx b/src/THcShower.cxx
index 13d5ba8be820e9b996d12afceb577c6d4f7a7067..1fe031c8b7e6e2cc66739b9d1acdf1570108e3b0 100644
--- a/src/THcShower.cxx
+++ b/src/THcShower.cxx
@@ -52,9 +52,6 @@ THcShower::THcShower( ) :
 //_____________________________________________________________________________
 void THcShower::Setup(const char* name, const char* description)
 {
-  if (fdbg_init_cal) 
-    cout << "THcShower::Setup called " << GetName() << endl;
-
   char prefix[2];
 
   prefix[0] = tolower(GetApparatus()->GetName()[0]);
@@ -69,11 +66,6 @@ void THcShower::Setup(const char* name, const char* description)
 
   gHcParms->LoadParmValues((DBRequest*)&list,prefix);
 
-  if (fdbg_init_cal) {
-    cout << layernamelist << endl;
-    cout << "Shower Counter: " << fNLayers << " layers" << endl;
-  }
-
   vector<string> layer_names = vsplit(layernamelist);
 
   if(layer_names.size() != (UInt_t) fNLayers) {
@@ -99,22 +91,23 @@ void THcShower::Setup(const char* name, const char* description)
 
     fPlanes[i] = new THcShowerPlane(fLayerNames[i], desc, i+1, this); 
 
-    if (fdbg_init_cal)
-      cout << "Created Shower Plane " << fLayerNames[i] << ", " << desc << endl;
   }
   delete [] desc;
 
-  if (fdbg_init_cal) 
-    cout << "THcShower::Setup Return " << GetName() << endl;
+  cout << "---------------------------------------------------------------\n";
+  cout << "From THcShower::Setup: created Shower planes ";
+  for(Int_t i=0;i < fNLayers;i++) {
+    cout << fLayerNames[i];
+    i < fNLayers-1 ? cout << ", " : cout << ".\n";
+  }
+  cout << "---------------------------------------------------------------\n";
+
 }
 
 
 //_____________________________________________________________________________
 THaAnalysisObject::EStatus THcShower::Init( const TDatime& date )
 {
-  if (fdbg_init_cal) 
-    cout << "THcShower::Init " << GetName() << endl;
-
   Setup(GetName(), GetTitle());
 
   // Should probably put this in ReadDatabase as we will know the
@@ -141,6 +134,11 @@ THaAnalysisObject::EStatus THcShower::Init( const TDatime& date )
 	     EngineDID);
       return kInitError;
   }
+
+  cout << "---------------------------------------------------------------\n";
+  cout << "From THcShower::Init: initialized " << GetName() << endl;
+  cout << "---------------------------------------------------------------\n";
+
   return fStatus = kOK;
 }
 
@@ -165,9 +163,6 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
   // Will need to determine which spectrometer in order to construct
   // the parameter names (e.g. hscin_1x_nr vs. sscin_1x_nr)
 
-  if (fdbg_init_cal) 
-    cout << "THcShower::ReadDatabase called " << GetName() << endl;
-
   prefix[0]=tolower(GetApparatus()->GetName()[0]);
   prefix[1]='\0';
 
@@ -182,22 +177,28 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
       {"dbg_sparsified_cal", &fdbg_sparsified_cal, kInt},
       {"dbg_clusters_cal", &fdbg_clusters_cal, kInt},
       {"dbg_tracks_cal", &fdbg_tracks_cal, kInt},
-      {"debugflaggeometry", &fdbg_init_cal, kInt},
+      {"dbg_init_cal", &fdbg_init_cal, kInt},
       {0}
     };
     fvTest = 0;			// Default if not defined
     gHcParms->LoadParmValues((DBRequest*)&list, prefix);
   }
 
+  // Debug output.
   if (fdbg_init_cal) {
-    cout << "Number of neg. columns      = " << fNegCols << endl;
-    cout << "Slop parameter              = " << fSlop << endl;
-    cout << "Fiducial volume test flag   = " << fvTest << endl;
-    cout << "Fiducial volume excl. width = " << fvDelta << endl;
-    cout << "Decode debug flag           = " << fdbg_decoded_cal  << endl;
-    cout << "Sparsify debug flag         = " << fdbg_sparsified_cal  << endl;
-    cout << "Cluster debug flag          = " << fdbg_clusters_cal  << endl;
-    cout << "Tracking debug flag         = " << fdbg_tracks_cal  << endl;
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShower::ReadDatabase\n";
+
+    cout << "  Number of neg. columns      = " << fNegCols << endl;
+    cout << "  Slop parameter              = " << fSlop << endl;
+    cout << "  Fiducial volume test flag   = " << fvTest << endl;
+    cout << "  Fiducial volume excl. width = " << fvDelta << endl;
+    cout << "  Initialize debug flag       = " << fdbg_init_cal  << endl;
+    cout << "  Raw hit debug flag          = " << fdbg_raw_cal  << endl;
+    cout << "  Decode debug flag           = " << fdbg_decoded_cal  << endl;
+    cout << "  Sparsify debug flag         = " << fdbg_sparsified_cal  << endl;
+    cout << "  Cluster debug flag          = " << fdbg_clusters_cal  << endl;
+    cout << "  Tracking debug flag         = " << fdbg_tracks_cal  << endl;
   }
 
   {
@@ -211,8 +212,9 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
     gHcParms->LoadParmValues((DBRequest*)&list, prefix);
   }
 
+  // Debug output.
   if (fdbg_init_cal) {
-    cout << "HMS Calorimeter coordinate correction constants:" << endl;
+    cout << "  HMS Calorimeter coordinate correction constants:" << endl;
     cout << "    fAcor = " << fAcor << endl;
     cout << "    fBcor = " << fBcor << endl;
     cout << "    fCcor = " << fCcor << endl;
@@ -248,9 +250,10 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
     gHcParms->LoadParmValues((DBRequest*)&list, prefix);
   }
 
+  // Debug output.
   if (fdbg_init_cal) {
     for(Int_t i=0;i<fNLayers;i++) {
-      cout << "Plane " << fLayerNames[i] << ":" << endl;
+      cout << "  Plane " << fLayerNames[i] << ":" << endl;
       cout << "    Block thickness: " << BlockThick[i] << endl;
       cout << "    NBlocks        : " << fNBlocks[i] << endl;
       cout << "    Z Position     : " << fNLayerZPos[i] << endl;
@@ -272,10 +275,11 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
   fvYmin = YPos[0] + fvDelta;
   fvYmax = YPos[1] - fvDelta;
 
+  // Debug output.
   if (fdbg_init_cal) {
-    cout << "Fiducial volume limits:" << endl;
-    cout << "   Xmin = " << fvXmin << "  Xmax = " << fvXmax << endl;
-    cout << "   Ymin = " << fvYmin << "  Ymax = " << fvYmax << endl;
+    cout << "  Fiducial volume limits:" << endl;
+    cout << "    Xmin = " << fvXmin << "  Xmax = " << fvXmax << endl;
+    cout << "    Ymin = " << fvYmin << "  Ymax = " << fvYmax << endl;
   }
 
   //Calibration related parameters (from hcal.param).
@@ -283,8 +287,9 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
   fNtotBlocks=0;              //total number of blocks
   for (Int_t i=0; i<fNLayers; i++) fNtotBlocks += fNBlocks[i];
 
+  // Debug output.
   if (fdbg_init_cal) 
-    cout << "Total number of blocks in the calorimeter: " << fNtotBlocks
+    cout << "  Total number of blocks in the calorimeter: " << fNtotBlocks
 	 << endl;
 
   //Pedestal limits from hcal.param.
@@ -324,50 +329,57 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
   };
   gHcParms->LoadParmValues((DBRequest*)&list, prefix);
 
+  // Debug output.
   if (fdbg_init_cal) {
 
-    cout << "hcal_pos_cal_const:" << endl;
+    cout << "  hcal_pos_cal_const:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << hcal_pos_cal_const[j*fNBlocks[j]+i] << " ";
       };
       cout <<  endl;
     };
 
-    cout << "fShPosPedLimit:" << endl;
+    cout << "  fShPosPedLimit:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << fShPosPedLimit[j*fNBlocks[j]+i] << " ";
       };
       cout <<  endl;
     };
 
-    cout << "hcal_pos_gain_cor:" << endl;
+    cout << "  hcal_pos_gain_cor:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << hcal_pos_gain_cor[j*fNBlocks[j]+i] << " ";
       };
       cout <<  endl;
     };
 
-    cout << "hcal_neg_cal_const:" << endl;
+    cout << "  hcal_neg_cal_const:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << hcal_neg_cal_const[j*fNBlocks[j]+i] << " ";
       };
       cout <<  endl;
     };
 
-    cout << "fShNegPedLimit:" << endl;
+    cout << "  fShNegPedLimit:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << fShNegPedLimit[j*fNBlocks[j]+i] << " ";
       };
       cout <<  endl;
     };
 
-    cout << "hcal_neg_gain_cor:" << endl;
+    cout << "  hcal_neg_gain_cor:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << hcal_neg_gain_cor[j*fNBlocks[j]+i] << " ";
       };
@@ -383,18 +395,21 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
     fNegGain[i] = hcal_neg_cal_const[i] *  hcal_neg_gain_cor[i];
   }
 
+  // Debug output.
   if (fdbg_init_cal) {
 
-    cout << "fPosGain:" << endl;
+    cout << "  fPosGain:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << fPosGain[j*fNBlocks[j]+i] << " ";
       };
       cout <<  endl;
     };
 
-    cout << "fNegGain:" << endl;
+    cout << "  fNegGain:" << endl;
     for (Int_t j=0; j<fNLayers; j++) {
+      cout << "    ";
       for (Int_t i=0; i<fNBlocks[j]; i++) {
 	cout << fNegGain[j*fNBlocks[j]+i] << " ";
       };
@@ -412,12 +427,13 @@ Int_t THcShower::ReadDatabase( const TDatime& date )
 
   fOrigin.SetXYZ(xOrig, yOrig, zOrig);
 
+  // Debug output.
   if (fdbg_init_cal) {
-    cout << "Origin of the Calorimeter:" << endl;
-    cout << "       Xorig = " << GetOrigin().X() << endl;
-    cout << "       Yorig = " << GetOrigin().Y() << endl;
-    cout << "       Zorig = " << GetOrigin().Z() << endl;
-    cout << endl;
+    cout << "  Origin of the Calorimeter:" << endl;
+    cout << "    Xorig = " << GetOrigin().X() << endl;
+    cout << "    Yorig = " << GetOrigin().Y() << endl;
+    cout << "    Zorig = " << GetOrigin().Z() << endl;
+    cout << "---------------------------------------------------------------\n";
   }
 
   // Detector axes. Assume no rotation.
@@ -438,9 +454,6 @@ Int_t THcShower::DefineVariables( EMode mode )
   if( mode == kDefine && fIsSetup ) return kOK;
   fIsSetup = ( mode == kDefine );
 
-  if (fdbg_init_cal)
-    cout << "THcShower::DefineVariables called " << GetName() << endl;
-
   // Register variables in global list
 
   RVarDef vars[] = {
@@ -514,9 +527,6 @@ Int_t THcShower::Decode( const THaEvData& evdata )
     Int_t nexthit = 0;
     for(Int_t ip=0;ip<fNLayers;ip++) {
       nexthit = fPlanes[ip]->AccumulatePedestals(fRawHitList, nexthit);
-      if (fdbg_decoded_cal) {
-	cout << "THcShower::Decode: nexthit = " << nexthit << endl;
-      }
     }
     fAnalyzePedestals = 1;	// Analyze pedestals first normal events
     return(0);
@@ -534,20 +544,6 @@ Int_t THcShower::Decode( const THaEvData& evdata )
     nexthit = fPlanes[ip]->ProcessHits(fRawHitList, nexthit);
   }
 
-  //   fRawHitList is TClones array of THcRawShowerHit objects
-
-  // This debug output does not work, needs to be corrected.
-
-  //  if (fdbg_decoded_cal) {
-  //    cout << "THcShower::Decode: Shower raw hit list:" << endl;
-  //    for(Int_t ihit = 0; ihit < fNRawHits ; ihit++) {
-  //      THcRawShowerHit* hit = (THcRawShowerHit *) fRawHitList->At(ihit);
-  //      cout << ihit << " : " << hit->fPlane << ":" << hit->fCounter << " : "
-  //	   << hit->fADC_pos << " " << hit->fADC_neg << " "  << endl;
-  //    }
-  //    cout << endl;
-  //  }
-
   return nhits;
 }
 
@@ -560,23 +556,15 @@ Int_t THcShower::CoarseProcess( TClonesArray& tracks)
   //
   // Apply corrections and reconstruct the complete hits.
   
- if (fdbg_clusters_cal)
-  cout << "THcShower::CoarseProcess called ---------------------------" <<endl;
-
  // Clustering of hits.
  //
 
  // Fill list of unclustered hits.
 
- if (fdbg_clusters_cal) cout << "Filling list of unclustered hits..."  << endl;
-
   THcShowerHitList HitList;
 
   for(Int_t j=0; j < fNLayers; j++) {
 
-    if (fdbg_clusters_cal) cout << "  Plane " << j << "  Eplane = " 
-				<< fPlanes[j]->GetEplane() << endl;
-
     for (Int_t i=0; i<fNBlocks[j]; i++) {
 
       //May be should be done this way.
@@ -593,53 +581,51 @@ Int_t THcShower::CoarseProcess( TClonesArray& tracks)
 	  fPlanes[j]->GetPosThr(i) - fPlanes[j]->GetPosPed(i) ||
 	  fPlanes[j]->GetAneg(i) - fPlanes[j]->GetNegPed(i) >
 	  fPlanes[j]->GetNegThr(i) - fPlanes[j]->GetNegPed(i)) {    //hit
+
 	Double_t Edep = fPlanes[j]->GetEmean(i);
 	Double_t Epos = fPlanes[j]->GetEpos(i);
 	Double_t Eneg = fPlanes[j]->GetEneg(i);
 	Double_t x = XPos[j][i] + BlockThick[j]/2.;        //top + thick/2
 	Double_t z = fNLayerZPos[j] + BlockThick[j]/2.;    //front + thick/2
+
 	THcShowerHit* hit = new THcShowerHit(i,j,x,z,Edep,Epos,Eneg);
 
 	HitList.push_back(hit);
-
-	if (fdbg_clusters_cal)
-	  cout << "    Hit: Edep = " << Edep << " X = " << x << " Z = " << z
-	       << " Block " << i << " Layer " << j << endl;
-      };
+      }
 
     }
   }
 
-  //Print out hits before clustering.
-
   fNhits = HitList.size();
 
+  //Debug output, print out hits before clustering.
+
   if (fdbg_clusters_cal) {
-    cout << "Total hits:     " << fNhits << endl;
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShower::CoarseProcess\n";
+    cout << "  List of unclustered hits. Total hits:     " << fNhits << endl;
     for (Int_t i=0; i!=fNhits; i++) {
-      cout << "unclustered hit " << i << ": ";
+      cout << "  hit " << i << ": ";
       (*(HitList.begin()+i))->show();
     }
   }
 
   // Create list of clusters and fill it.
 
-  //  fClusterList = new THcShowerClusterList; //shall be allocated before
   fClusterList->ClusterHits(HitList);
 
   fNclust = (*fClusterList).NbClusters();   //number of clusters
 
-  //Print out the cluster list.
+  //Debug output, print out the cluster list.
 
   if (fdbg_clusters_cal) {
 
-    cout << "Cluster_list size: " << fNclust << endl;
+    cout << "  Clustered hits. Number of clusters: " << fNclust << endl;
 
     for (Int_t i=0; i!=fNclust; i++) {
 
       THcShowerCluster* cluster = (*fClusterList).ListedCluster(i);
-
-      cout << "Cluster #" << i 
+      cout << "  Cluster #" << i 
 	   <<":  E=" << (*cluster).clE() 
 	   << "  Epr=" << (*cluster).clEpr()
 	   << "  X=" << (*cluster).clX()
@@ -651,39 +637,12 @@ Int_t THcShower::CoarseProcess( TClonesArray& tracks)
        	THcShowerHit* hit = (*cluster).ClusteredHit(j);
        	cout << "  hit #" << j << ":  "; (*hit).show();
       }
-      //      cout << endl;
 
     }
-  }
-
-  // Track-to-cluster  matching.
-  //
 
-  Int_t Ntracks = tracks.GetLast()+1;   // Number of reconstructed tracks
-
-  if (fdbg_tracks_cal) {
-    cout << endl;
-    cout << "Number of reconstructed tracks = " << Ntracks << endl;
+    cout << "---------------------------------------------------------------\n";
   }
 
-  for (Int_t itrk=0; itrk<Ntracks; itrk++) {
-
-    THaTrack* theTrack = static_cast<THaTrack*>( tracks[itrk] );
-
-    if (fdbg_tracks_cal) {
-      cout << "   Track " << itrk << ": "
-	   << "  X = " << theTrack->GetX()
-	   << "  Y = " << theTrack->GetY()
-	   << "  Theta = " << theTrack->GetTheta()
-	   << "  Phi = " << theTrack->GetPhi()
-	   << endl;
-    }
-
-  }       //over tracks
-
-  if (fdbg_clusters_cal)
-  cout << "THcShower::CoarseProcess return ---------------------------" <<endl;
-
   return 0;
 }
 
@@ -695,15 +654,6 @@ Int_t THcShower::MatchCluster(THaTrack* Track,
   // Match a cluster to a given track. Return the cluster number,
   // and track coordinates at the front of calorimeter.
 
-  if (fdbg_tracks_cal) {
-    cout << "THcShower::MatchCluster: Track at DC:"
-	 << "  X = " << Track->GetX()
-	 << "  Y = " << Track->GetY()
-	 << "  Theta = " << Track->GetTheta()
-	 << "  Phi = " << Track->GetPhi()
-	 << endl;
-  }
-
   XTrFront = kBig;
   YTrFront = kBig;
   Double_t pathl = kBig;
@@ -720,13 +670,6 @@ Int_t THcShower::MatchCluster(THaTrack* Track,
   XTrFront += GetOrigin().X();
   YTrFront += GetOrigin().Y();
 
-  if (fdbg_tracks_cal)
-    cout << "  Track at the front of Calorimeter:"
-	 << "  X = " << XTrFront
-	 << "  Y = " << YTrFront
-	 << "  Pathl = " << pathl
-	 << endl;
-
   Bool_t inFidVol = true;            // In Fiducial Volume flag
 
   // Re-evaluate Fid. Volume Flag if fid. volume test is requested
@@ -746,20 +689,11 @@ Int_t THcShower::MatchCluster(THaTrack* Track,
     XTrBack += GetOrigin().X();   // from local coord. system
     YTrBack += GetOrigin().Y();   // to the spectrometer system
 
-    if (fdbg_tracks_cal)
-      cout << "  Track at the back of Calorimeter:"
-	   << "  X = " << XTrBack
-	   << "  Y = " << YTrBack
-	   << "  Pathl = " << pathl
-	   << endl;
-
     inFidVol = (XTrFront <= fvXmax) && (XTrFront >= fvXmin) &&
                (YTrFront <= fvYmax) && (YTrFront >= fvYmin) &&
                (XTrBack <= fvXmax) && (XTrBack >= fvXmin) &&
                (YTrBack <= fvYmax) && (YTrBack >= fvYmin);
 
-    if (fdbg_tracks_cal) 
-      cout << "  Fiducial volume test: inFidVol = " << inFidVol << endl;
   }
 
   // Match a cluster to the track.
@@ -790,9 +724,30 @@ Int_t THcShower::MatchCluster(THaTrack* Track,
     }
   }
 
-  if (fdbg_tracks_cal)
-    cout << "MatchCluster: mclust= " << mclust << "  delatX= " << deltaX 
+  //Debug output.
+
+  if (fdbg_tracks_cal) {
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShower::MatchCluster\n";
+
+    cout << "  Track at DC:"
+	 << "  X = " << Track->GetX()
+	 << "  Y = " << Track->GetY()
+	 << "  Theta = " << Track->GetTheta()
+	 << "  Phi = " << Track->GetPhi()
+	 << endl;
+    cout << "  Track at the front of Calorimeter:"
+	 << "  X = " << XTrFront
+	 << "  Y = " << YTrFront
+	 << "  Pathl = " << pathl
+	 << endl;
+    if (fvTest) 
+      cout << "  Fiducial volume test: inFidVol = " << inFidVol << endl;
+
+    cout << "  Matched cluster #" << mclust << ",  delatX= " << deltaX 
 	 << endl;
+    cout << "---------------------------------------------------------------\n";
+  }
 
   return mclust;
 }
@@ -812,14 +767,6 @@ Float_t THcShower::GetShEnergy(THaTrack* Track) {
 
   Int_t mclust = MatchCluster(Track, Xtr, Ytr);
 
-  if (fdbg_tracks_cal) {
-    cout << "GetShEnergy: Track X = " << Xtr << "  Y = " << Ytr;
-    if (mclust >= 0)
-      cout << "  matched cluster # " << mclust << endl;
-    else
-      cout << " no matched cluster found" << endl;
-  }
-
   // Coordinate corrected total energy deposition in the cluster.
 
   Float_t Etrk = 0.;
@@ -846,20 +793,28 @@ Float_t THcShower::GetShEnergy(THaTrack* Track) {
 	corneg = 0.;
       }
 
-      if (fdbg_tracks_cal) {
-	cout << "   Plane " << ip << "  Ytr = " << Ytr 
-	     << "  corpos = " << corpos 
-	     << "  corneg = " << corneg << endl;
-      }
-
       Etrk += (*cluster).clEplane(ip,0) * corpos;
-      Etrk += (*cluster).clEplane(ip,1) * corneg;;
+      Etrk += (*cluster).clEplane(ip,1) * corneg;
 
     }   //over planes
 
   }   //mclust>=0
 
-  if (fdbg_tracks_cal) cout << "   Etrk = " << Etrk << endl;
+  //Debug output.
+
+  if (fdbg_tracks_cal) {
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShower::GetShEnergy\n";
+
+    cout << "  Track at the calorimeter: X = " << Xtr << "  Y = " << Ytr;
+    if (mclust >= 0)
+      cout << ", matched cluster #" << mclust << "." << endl;
+    else
+      cout << ", no matched cluster found." << endl;
+
+    cout << "  Coordinate corrected track energy = " << Etrk << "." << endl;
+    cout << "---------------------------------------------------------------\n";
+  }
 
   return Etrk;
 }
@@ -873,11 +828,6 @@ Int_t THcShower::FineProcess( TClonesArray& tracks )
 
   Int_t Ntracks = tracks.GetLast()+1;   // Number of reconstructed tracks
 
-  if (fdbg_tracks_cal) {
-    cout << endl;
-    cout << "THcShower::FineProcess: Number of tracks = " << Ntracks << endl;
-  }
-
   for (Int_t itrk=0; itrk<Ntracks; itrk++) {
 
     THaTrack* theTrack = static_cast<THaTrack*>( tracks[itrk] );
@@ -885,22 +835,28 @@ Int_t THcShower::FineProcess( TClonesArray& tracks )
     Float_t energy = GetShEnergy(theTrack);
     theTrack->SetEnergy(energy);
 
-    // if ( fEvent == 13252 )
-    //   cout << "THcShower: track = " << itrk + 1 
-    // 	   << "   energy = " << energy << endl;
+  }       //over tracks
 
+  //Debug output.
 
-    if (fdbg_tracks_cal) {
-      cout << "THcShower::FineProcess, Track " << itrk << ": "
+  if (fdbg_tracks_cal) {
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShower::FineProcess\n";
+
+    cout << "  Number of tracks = " << Ntracks << endl;
+
+    for (Int_t itrk=0; itrk<Ntracks; itrk++) {
+      THaTrack* theTrack = static_cast<THaTrack*>( tracks[itrk] );
+      cout << "  Track " << itrk << ": "
 	   << "  X = " << theTrack->GetX()
 	   << "  Y = " << theTrack->GetY()
 	   << "  Theta = " << theTrack->GetTheta()
 	   << "  Phi = " << theTrack->GetPhi()
-	   << "  Energy = " << energy << endl;
+	   << "  Energy = " << theTrack->GetEnergy() << endl;
     }
 
-
-  }       //over tracks
+    cout << "---------------------------------------------------------------\n";
+  }
 
   return 0;
 }
diff --git a/src/THcShowerPlane.cxx b/src/THcShowerPlane.cxx
index cfd11d36ddc16e43a92db939099a1d8c79aa09e6..a34c9557aedcf1f60b0044a22b242772b3678450 100644
--- a/src/THcShowerPlane.cxx
+++ b/src/THcShowerPlane.cxx
@@ -70,9 +70,6 @@ THaAnalysisObject::EStatus THcShowerPlane::Init( const TDatime& date )
 {
   // Extra initialization for shower layer: set up DataDest map
 
-  if ( ((THcShower*) GetParent())->fdbg_init_cal )
-    cout << "THcShowerPlane::Init called " << GetName() << endl;
-
   if( IsZombie())
     return fStatus = kInitError;
 
@@ -91,35 +88,15 @@ THaAnalysisObject::EStatus THcShowerPlane::Init( const TDatime& date )
 //_____________________________________________________________________________
 Int_t THcShowerPlane::ReadDatabase( const TDatime& date )
 {
-
-  // See what file it looks for
-  
-  //  static const char* const here = "ReadDatabase()";
-  char prefix[2];
-  char parname[100];
-  
-  prefix[0]=tolower(GetParent()->GetPrefix()[0]);
-  prefix[1]='\0';
-
-  strcpy(parname,prefix);
-  strcat(parname,"cal_");
-  strcat(parname,GetName());
-
-  strcat(parname,"_nr");
-
   // Retrieve parameters we need from parent class
+  //
+
   THcShower* fParent;
   fParent = (THcShower*) GetParent();
 
-  if (fParent->fdbg_init_cal)
-    cout << " Getting value of SHOWER!!!" << parname << endl;
-
+  //  Find the number of elements
   fNelem = fParent->GetNBlocks(fLayerNum-1);
 
-  if (fParent->fdbg_init_cal)
-    cout << "THcShowerPlane::ReadDatabase: fLayerNum=" << fLayerNum 
-         << "  fNelem=" << fNelem << endl;
-
   // Origin of the plane:
   //
   // X is average of top X coordinates of the top and bottom blocks
@@ -140,28 +117,8 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date )
 
   fOrigin.SetXYZ(xOrig, yOrig, zOrig);
 
-  if (fParent->fdbg_init_cal)
-    cout << "Origin of Layer " << fLayerNum << ": "
-	 << fOrigin.X() << " " << fOrigin.Y() << " " << fOrigin.Z() << endl;
-
-  // Detector axes. Assume no rotation.
-  //
-  //  DefineAxes(0.); Do not work for subdetector
-
-//  fNelem = *(Int_t *)gHcParms->Find(parname)->GetValuePointer();
-// 
-//   parname[plen]='\0';
-//   strcat(parname,"_spacing");
-// 
-//   fSpacing =  gHcParms->Find(parname)->GetValue(0);
-  
-  // First letter of GetParent()->GetPrefix() tells us what prefix to
-  // use on parameter names.  
-
-
-  //  Find the number of elements
-  
   // Create arrays to hold results here
+  //
 
   // Pedestal limits per channel.
 
@@ -173,17 +130,7 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date )
     fNegPedLimit[i] = fParent->GetPedLimit(i,fLayerNum-1,1);
   }
 
-  if (fParent->fdbg_init_cal) {
-    cout << "   fPosPedLimit:";
-    for(Int_t i=0;i<fNelem;i++) cout << " " << fPosPedLimit[i];
-    cout << endl;
-    cout << "   fNegPedLimit:";
-    for(Int_t i=0;i<fNelem;i++) cout << " " << fNegPedLimit[i];
-    cout << endl;
-  }
-
   fMinPeds = fParent->GetMinPeds();
-  if (fParent->fdbg_init_cal) cout << "   fMinPeds = " << fMinPeds << endl;
 
   InitializePedestals();
 
@@ -200,6 +147,29 @@ Int_t THcShowerPlane::ReadDatabase( const TDatime& date )
   fEneg = new Double_t[fNelem];
   fEmean= new Double_t[fNelem];
 
+  // Debug output.
+
+  if (fParent->fdbg_init_cal) {
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShowerPlane::ReadDatabase\n";
+
+    cout << "  Layer #" << fLayerNum << ", number of elements " << fNelem
+	 << endl;
+
+    cout << "  Origin of Layer at  X = " << fOrigin.X()
+	 << "  Y = " << fOrigin.Y() << "  Z = " << fOrigin.Z() << endl;
+
+    cout << "  fPosPedLimit:";
+    for(Int_t i=0;i<fNelem;i++) cout << " " << fPosPedLimit[i];
+    cout << endl;
+    cout << "  fNegPedLimit:";
+    for(Int_t i=0;i<fNelem;i++) cout << " " << fNegPedLimit[i];
+    cout << endl;
+
+    cout << "  fMinPeds = " << fMinPeds << endl;
+    cout << "---------------------------------------------------------------\n";
+  }
+
   return kOK;
 }
 
@@ -208,9 +178,6 @@ Int_t THcShowerPlane::DefineVariables( EMode mode )
 {
   // Initialize global variables and lookup table for decoder
 
-  if ( ((THcShower*) GetParent())->fdbg_init_cal )
-    cout << "THcShowerPlane::DefineVariables called " << GetName() << endl;
-
   if( mode == kDefine && fIsSetup ) return kOK;
   fIsSetup = ( mode == kDefine );
 
@@ -237,20 +204,31 @@ Int_t THcShowerPlane::DefineVariables( EMode mode )
 //_____________________________________________________________________________
 void THcShowerPlane::Clear( Option_t* )
 {
-  if ( ((THcShower*) GetParent())->fdbg_decoded_cal )
-    cout << " Calling THcShowerPlane::Clear " << GetName() << endl;
-
   // Clears the hit lists
   fPosADCHits->Clear();
   fNegADCHits->Clear();
+
+  // Debug output.
+  if ( ((THcShower*) GetParent())->fdbg_decoded_cal ) {
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShowerPlane::Clear\n";
+    cout << " Cleared ADC hits for plane " << GetName() << endl;
+    cout << "---------------------------------------------------------------\n";
+  }
 }
 
 //_____________________________________________________________________________
 Int_t THcShowerPlane::Decode( const THaEvData& evdata )
 {
   // Doesn't actually get called.  Use Fill method instead
-  if ( ((THcShower*) GetParent())->fdbg_decoded_cal )
-    cout << " Calling THcShowerPlane::Decode " << GetName() << endl;
+
+  //Debug output.
+  if ( ((THcShower*) GetParent())->fdbg_decoded_cal ) {
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShowerPlane::Decode\n";
+    cout << " Called for plane " << GetName() << endl;
+    cout << "---------------------------------------------------------------\n";
+  }
 
   return 0;
 }
@@ -262,9 +240,6 @@ Int_t THcShowerPlane::CoarseProcess( TClonesArray& tracks )
   // Nothing is done here. See ProcessHits method instead.
   //  
 
-  if ( ((THcShower*) GetParent())->fdbg_tracks_cal )
-    cout << "THcShowerPlane::CoarseProcess called --------------------" << endl;
-
  return 0;
 }
 
@@ -284,10 +259,7 @@ Int_t THcShowerPlane::ProcessHits(TClonesArray* rawhits, Int_t nexthit)
   THcShower* fParent;
   fParent = (THcShower*) GetParent();
 
-  if (fParent->fdbg_decoded_cal)
-    cout << "THcShowerPlane::ProcessHits called ----" << endl;
-
-  // Initialize variable.
+  // Initialize variables.
 
   Int_t nPosADCHits=0;
   Int_t nNegADCHits=0;
@@ -315,18 +287,9 @@ Int_t THcShowerPlane::ProcessHits(TClonesArray* rawhits, Int_t nexthit)
 
   Int_t ihit = nexthit;
 
-  if (fParent->fdbg_decoded_cal)
- {
-    cout << "   nrawhits =  " << nrawhits << endl;
-    cout << "   nexthit =  " << nexthit << endl;
-  }
-
   while(ihit < nrawhits) {
     THcRawShowerHit* hit = (THcRawShowerHit *) rawhits->At(ihit);
 
-    if (fParent->fdbg_decoded_cal)
-      cout << "   fplane =  " << hit->fPlane << " Num = " << fLayerNum << endl;
-
     // This is OK as far as the hit list is sorted by layer.
     //
     if(hit->fPlane > fLayerNum) {
@@ -382,8 +345,44 @@ Int_t THcShowerPlane::ProcessHits(TClonesArray* rawhits, Int_t nexthit)
     ihit++;
   }
 
-  if (fParent->fdbg_decoded_cal) 
-    cout << "THcShowerPlane::ProcessHits return ----" << endl;
+  //Debug output.
+
+  if (fParent->fdbg_decoded_cal) {
+
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShowerPlane::ProcessHits\n";
+    cout << "  nrawhits =  " << nrawhits << "  nexthit =  " << nexthit << endl;
+    cout << "  Sparsified hits for HMS calorimeter plane #" << fLayerNum
+	 << ", " << GetName() << ":" << endl;
+
+    Int_t nspar = 0;
+    for (Int_t jhit = nexthit; jhit < nrawhits; jhit++) {
+
+      THcRawShowerHit* hit = (THcRawShowerHit *) rawhits->At(jhit);
+      if(hit->fPlane > fLayerNum) {
+	break;
+      }
+
+      if(hit->fADC_pos > fPosThresh[hit->fCounter -1] ||
+	 hit->fADC_neg > fNegThresh[hit->fCounter -1]) {
+	cout << "  plane =  " << hit->fPlane
+	     << "  counter =  " << hit->fCounter
+	     << "  Emean = " << fEmean[hit->fCounter-1]
+	     << "  Epos = " << fEpos[hit->fCounter-1]
+	     << "  Eneg = " << fEneg[hit->fCounter-1]
+	     << endl;
+	nspar++;
+      }
+    }
+
+    if (nspar == 0) cout << "  No hits\n";
+
+    cout << "  Eplane = " << fEplane
+	 << "  Eplane_pos = " << fEplane_pos
+	 << "  Eplane_neg = " << fEplane_neg
+	 << endl;
+    cout << "---------------------------------------------------------------\n";
+  }
 
   return(ihit);
 }
@@ -396,18 +395,11 @@ Int_t THcShowerPlane::AccumulatePedestals(TClonesArray* rawhits, Int_t nexthit)
 
   Int_t nrawhits = rawhits->GetLast()+1;
 
-  if ( ((THcShower*) GetParent())->fdbg_raw_cal )
-    cout << "THcShowerPlane::AcculatePedestals " << fLayerNum << " " 
-	 << nexthit << "/" << nrawhits << endl;
-
   Int_t ihit = nexthit;
   while(ihit < nrawhits) {
 
     THcRawShowerHit* hit = (THcRawShowerHit *) rawhits->At(ihit);
 
-    if ( ((THcShower*) GetParent())->fdbg_raw_cal )
-      cout << "fPlane =  " << hit->fPlane << " Limit = " << fLayerNum << endl;
-
     // OK for hit list sorted by layer.
     if(hit->fPlane > fLayerNum) {
       break;
@@ -437,6 +429,35 @@ Int_t THcShowerPlane::AccumulatePedestals(TClonesArray* rawhits, Int_t nexthit)
 
   fNPedestalEvents++;
 
+  // Debug output.
+
+  if ( ((THcShower*) GetParent())->fdbg_raw_cal ) {
+
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShowerPlane::AcculatePedestals\n";
+    cout << "Processed hit list for plane " << GetName() << ":\n";
+
+    for (Int_t ih=nexthit; ih<nrawhits; ih++) {
+
+      THcRawShowerHit* hit = (THcRawShowerHit *) rawhits->At(ih);
+
+      // OK for hit list sorted by layer.
+      if(hit->fPlane > fLayerNum) {
+	break;
+      }
+
+      cout << "  hit " << ih << ":"
+	   << "  plane =  " << hit->fPlane
+	   << "  counter = " << hit->fCounter
+	   << "  ADCpos = " << hit->fADC_pos
+	   << "  ADCneg = " << hit->fADC_neg
+	   << endl;
+    }
+
+    cout << "---------------------------------------------------------------\n";
+
+  }
+
   return(ihit);
 }
     
@@ -460,12 +481,27 @@ void THcShowerPlane::CalculatePedestals( )
 		      - fNegPed[i]*fNegPed[i]);
     fNegThresh[i] = fNegPed[i] + TMath::Min(50., TMath::Max(10., 3.*fNegSig[i]));
 
-    if ( ((THcShower*) GetParent())->fdbg_raw_cal )
-      cout << "Ped&Thr: " << fPosPed[i] << " " << fPosThresh[i] << " "
-	   << fNegPed[i] << " " << fNegThresh[i] << " " << i+1 << endl;
   }
 
-  //  if ( ((THcShower*) GetParent())->fdbg_raw_cal ) cout << " " << endl;
+  // Debug output.
+
+  if ( ((THcShower*) GetParent())->fdbg_raw_cal ) {
+
+    cout << "---------------------------------------------------------------\n";
+    cout << "Debug output from THcShowerPlane::CalculatePedestals\n";
+    cout << "  ADC pedestals and thresholds for HMS calorimeter plane "
+	 << GetName() << endl;
+    for(Int_t i=0; i<fNelem;i++) {
+      cout << "  element " << i << ": "
+	   << "  Pos. pedestal = " << fPosPed[i]
+	   << "  Pos. threshold = " << fPosThresh[i]
+	   << "  Neg. pedestal = " << fNegPed[i]
+	   << "  Neg. threshold = " << fNegThresh[i]
+	   << endl;
+    }
+    cout << "---------------------------------------------------------------\n";
+
+  }
   
 }