From 22badc9a1416acc0875aaa17807f2a6f69fdc8d5 Mon Sep 17 00:00:00 2001
From: "Stephen A. Wood" <saw@jlab.org>
Date: Thu, 26 Sep 2013 16:29:18 -0400
Subject: [PATCH] More indentation cleanup.

---
 src/THcShower.h      |  2 +-
 src/THcShowerHit.h   | 12 ++++++------
 src/THcShowerPlane.h |  4 ++--
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/THcShower.h b/src/THcShower.h
index 76ae8fd..04a0579 100644
--- a/src/THcShower.h
+++ b/src/THcShower.h
@@ -86,7 +86,7 @@ public:
 
   THcShower();  // for ROOT I/O
 
- protected:
+protected:
 
   Int_t fAnalyzePedestals;   // Flag for pedestal analysis.
 
diff --git a/src/THcShowerHit.h b/src/THcShowerHit.h
index f1d9308..7d31b06 100644
--- a/src/THcShowerHit.h
+++ b/src/THcShowerHit.h
@@ -11,17 +11,17 @@ using namespace std;
 
 class THcShowerHit {       //HMS calorimeter hit class
 
- private:
+private:
   UInt_t fCol, fRow;       //hit colomn and row
   Double_t fX, fZ;         //hit X (vert.) and Z (along spect.axis) coordinates
   Double_t fE;             //hit energy deposition
-
- public:
+  
+public:
 
   THcShowerHit() {         //default constructor
-  fCol=fRow=0;
-  fX=fZ=0.;
-  fE=0.;
+    fCol=fRow=0;
+    fX=fZ=0.;
+    fE=0.;
   }
 
   THcShowerHit(UInt_t hRow, UInt_t hCol, Double_t hX, Double_t hZ,
diff --git a/src/THcShowerPlane.h b/src/THcShowerPlane.h
index 6c0aa51..eb68410 100644
--- a/src/THcShowerPlane.h
+++ b/src/THcShowerPlane.h
@@ -24,7 +24,7 @@ class THaSignalHit;
 
 class THcShowerPlane : public THaSubDetector {
   
- public:
+public:
   THcShowerPlane( const char* name, const char* description,
 			Int_t planenum, THaDetectorBase* parent = NULL);
   virtual ~THcShowerPlane();
@@ -90,7 +90,7 @@ class THcShowerPlane : public THaSubDetector {
     return fNegPed[i];
   };
 
- protected:
+protected:
 
   Double_t*   fA_Pos;         // [fNelem] ADC amplitudes of blocks
   Double_t*   fA_Neg;
-- 
GitLab