Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions
G4PSDoseDepositForCylinder3D Class Reference

#include <G4PSDoseDepositForCylinder3D.hh>

Inheritance diagram for G4PSDoseDepositForCylinder3D:
G4PSDoseDeposit3D G4PSDoseDeposit G4VPrimitiveScorer

Public Member Functions

 G4PSDoseDepositForCylinder3D (G4String name, G4int ni=1, G4int nj=1, G4int nk=1, G4int depi=2, G4int depj=1, G4int depk=0)
 
 G4PSDoseDepositForCylinder3D (G4String name, const G4String &unit, G4int ni=1, G4int nj=1, G4int nk=1, G4int depi=2, G4int depj=1, G4int depk=0)
 
virtual ~G4PSDoseDepositForCylinder3D ()
 
void SetCylinderSize (G4double dr, G4double dz)
 
void SetNumberOfSegments (G4int nSeg[3])
 
- Public Member Functions inherited from G4PSDoseDeposit3D
 G4PSDoseDeposit3D (G4String name, G4int ni=1, G4int nj=1, G4int nk=1, G4int depi=2, G4int depj=1, G4int depk=0)
 
 G4PSDoseDeposit3D (G4String name, const G4String &unit, G4int ni=1, G4int nj=1, G4int nk=1, G4int depi=2, G4int depj=1, G4int depk=0)
 
virtual ~G4PSDoseDeposit3D ()
 
- Public Member Functions inherited from G4PSDoseDeposit
 G4PSDoseDeposit (G4String name, G4int depth=0)
 
 G4PSDoseDeposit (G4String name, const G4String &unit, G4int depth=0)
 
virtual ~G4PSDoseDeposit ()
 
virtual void Initialize (G4HCofThisEvent *)
 
virtual void EndOfEvent (G4HCofThisEvent *)
 
virtual void clear ()
 
virtual void DrawAll ()
 
virtual void PrintAll ()
 
virtual void SetUnit (const G4String &unit)
 
- Public Member Functions inherited from G4VPrimitiveScorer
 G4VPrimitiveScorer (G4String name, G4int depth=0)
 
virtual ~G4VPrimitiveScorer ()
 
G4int GetCollectionID (G4int)
 
void SetUnit (const G4String &unit)
 
const G4StringGetUnit () const
 
G4double GetUnitValue () const
 
void SetMultiFunctionalDetector (G4MultiFunctionalDetector *d)
 
G4MultiFunctionalDetectorGetMultiFunctionalDetector () const
 
G4String GetName () const
 
void SetFilter (G4VSDFilter *f)
 
G4VSDFilterGetFilter () const
 
void SetVerboseLevel (G4int vl)
 
G4int GetVerboseLevel () const
 
void SetNijk (G4int i, G4int j, G4int k)
 

Protected Member Functions

virtual G4double ComputeVolume (G4Step *, G4int idx)
 
- Protected Member Functions inherited from G4PSDoseDeposit3D
virtual G4int GetIndex (G4Step *)
 
- Protected Member Functions inherited from G4PSDoseDeposit
virtual G4bool ProcessHits (G4Step *, G4TouchableHistory *)
 
- Protected Member Functions inherited from G4VPrimitiveScorer
void CheckAndSetUnit (const G4String &unit, const G4String &category)
 

Additional Inherited Members

- Protected Attributes inherited from G4VPrimitiveScorer
G4String primitiveName
 
G4MultiFunctionalDetectordetector
 
G4VSDFilterfilter
 
G4int verboseLevel
 
G4int indexDepth
 
G4String unitName
 
G4double unitValue
 
G4int fNi
 
G4int fNj
 
G4int fNk
 

Detailed Description

Definition at line 46 of file G4PSDoseDepositForCylinder3D.hh.

Constructor & Destructor Documentation

G4PSDoseDepositForCylinder3D::G4PSDoseDepositForCylinder3D ( G4String  name,
G4int  ni = 1,
G4int  nj = 1,
G4int  nk = 1,
G4int  depi = 2,
G4int  depj = 1,
G4int  depk = 0 
)

Definition at line 44 of file G4PSDoseDepositForCylinder3D.cc.

47  :G4PSDoseDeposit3D(name,ni,nj,nk,di,dj,dk)
48 {
49  nSegment[0] = nSegment[1] = nSegment[2] = 0;
50 }
G4PSDoseDeposit3D(G4String name, G4int ni=1, G4int nj=1, G4int nk=1, G4int depi=2, G4int depj=1, G4int depk=0)
G4PSDoseDepositForCylinder3D::G4PSDoseDepositForCylinder3D ( G4String  name,
const G4String unit,
G4int  ni = 1,
G4int  nj = 1,
G4int  nk = 1,
G4int  depi = 2,
G4int  depj = 1,
G4int  depk = 0 
)

Definition at line 52 of file G4PSDoseDepositForCylinder3D.cc.

56  :G4PSDoseDeposit3D(name,unit,ni,nj,nk,di,dj,dk)
57 {
58  nSegment[0] = nSegment[1] = nSegment[2] = 0;
59 }
G4PSDoseDeposit3D(G4String name, G4int ni=1, G4int nj=1, G4int nk=1, G4int depi=2, G4int depj=1, G4int depk=0)
G4PSDoseDepositForCylinder3D::~G4PSDoseDepositForCylinder3D ( )
virtual

Definition at line 61 of file G4PSDoseDepositForCylinder3D.cc.

62 {;}

Member Function Documentation

G4double G4PSDoseDepositForCylinder3D::ComputeVolume ( G4Step ,
G4int  idx 
)
protectedvirtual

Reimplemented from G4PSDoseDeposit.

Definition at line 74 of file G4PSDoseDepositForCylinder3D.cc.

References python.hepunit::pi, and test::v.

74  {
75  G4double r0 = (cylinderSize[2]/nSegment[2])*(idx);
76  G4double r1 = (cylinderSize[2]/nSegment[2])*(idx+1);
77  G4double dRArea = (r1*r1-r0*r0)*pi;
78 
79  // cylinderSize is given in Half Size
80  G4double fullz = cylinderSize[0]/nSegment[0]*2.;
81  G4double phiRatio = 1./nSegment[1];
82  G4double v = dRArea*fullz*phiRatio;
83 
84  return v;
85 }
double G4double
Definition: G4Types.hh:76
void G4PSDoseDepositForCylinder3D::SetCylinderSize ( G4double  dr,
G4double  dz 
)

Definition at line 64 of file G4PSDoseDepositForCylinder3D.cc.

References CLHEP::Hep3Vector::setX(), CLHEP::Hep3Vector::setY(), CLHEP::Hep3Vector::setZ(), and python.hepunit::twopi.

Referenced by G4ScoreQuantityMessenger::SetNewValue().

64  {
65  cylinderSize.setX(dz); //Z Phi R
66  cylinderSize.setY(twopi); //Z Phi R
67  cylinderSize.setZ(dr); //Z Phi R
68 }
void setY(double)
void setZ(double)
void setX(double)
void G4PSDoseDepositForCylinder3D::SetNumberOfSegments ( G4int  nSeg[3])

Definition at line 69 of file G4PSDoseDepositForCylinder3D.cc.

Referenced by G4ScoreQuantityMessenger::SetNewValue().

69  {
70  nSegment[0] = nSeg[0]; // Z
71  nSegment[1] = nSeg[1]; // Phi
72  nSegment[2] = nSeg[2]; // R
73 }

The documentation for this class was generated from the following files: