Skip to content

Commit

Permalink
Cleanup GateSpatialResolution changes
Browse files Browse the repository at this point in the history
	modified:   source/digits_hits/include/GateSpatialResolution.hh
	modified:   source/digits_hits/src/GateSpatialResolution.cc
  • Loading branch information
Marc Granado committed Sep 18, 2024
1 parent 4decb5d commit 4d8fc4d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 17 deletions.
16 changes: 8 additions & 8 deletions source/digits_hits/include/GateSpatialResolution.hh
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ public:


//! These functions return the resolution in use.
G4double GetFWHM() { return m_fwhm; }
GateVDistribution* GetFWHMxdistrib() { return m_fwhmXdistrib; }
GateVDistribution* GetFWHMydistrib() { return m_fwhmYdistrib; }
GateVDistribution* GetFWHMxydistrib2D() { return m_fwhmXYdistrib2D; }
G4double GetFWHM() { return m_fwhm; }
GateVDistribution* GetFWHMxdistrib() { return m_fwhmXdistrib; }
GateVDistribution* GetFWHMydistrib() { return m_fwhmYdistrib; }
GateVDistribution* GetFWHMxydistrib2D() { return m_fwhmXYdistrib2D; }

G4double GetFWHMx() { return m_fwhmX; }
G4double GetFWHMy() { return m_fwhmY; }
G4double GetFWHMz() { return m_fwhmZ; }
G4double GetFWHMx() { return m_fwhmX; }
G4double GetFWHMy() { return m_fwhmY; }
G4double GetFWHMz() { return m_fwhmZ; }

//! These functions set the spresolution of a gaussian spblurring.
/*!
Expand All @@ -75,7 +75,7 @@ public:
void LocateOutputDigi(GateDigi* inputDigi, G4double PxNew,G4double PyNew,G4double PzNew);

void UpdateVolumeID();
void UpdateVolumeID(G4int newCopyNo);


//! Implementation of the pure virtual method declared by the base class GateClockDependent
//! print-out the attributes specific of the blurring
Expand Down
9 changes: 0 additions & 9 deletions source/digits_hits/src/GateSpatialResolution.cc
Original file line number Diff line number Diff line change
Expand Up @@ -314,15 +314,6 @@ void GateSpatialResolution::UpdateVolumeID()
}


void GateSpatialResolution::UpdateVolumeID(G4int newCopyNo)
{
for (G4int i=1;i<m_systemDepth;i++)
{
m_outputDigi->ChangeVolumeIDAndOutputVolumeIDValue(i,newCopyNo);
}


}


void GateSpatialResolution::DescribeMyself(size_t indent )
Expand Down

0 comments on commit 4d8fc4d

Please sign in to comment.