Skip to content
Snippets Groups Projects
Commit 22badc9a authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

More indentation cleanup.

parent 043bc415
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ public:
THcShower(); // for ROOT I/O
protected:
protected:
Int_t fAnalyzePedestals; // Flag for pedestal analysis.
......
......@@ -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,
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment