Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParameterisationParaZ Class Reference

#include <G4ParameterisationPara.hh>

+ Inheritance diagram for G4ParameterisationParaZ:

Public Member Functions

 G4ParameterisationParaZ (EAxis axis, G4int nCopies, G4double offset, G4double step, G4VSolid *msolid, DivisionType divType)
 
 ~G4ParameterisationParaZ ()
 
G4double GetMaxParameter () const
 
void ComputeTransformation (const G4int copyNo, G4VPhysicalVolume *physVol) const
 
void ComputeDimensions (G4Para &para, const G4int copyNo, const G4VPhysicalVolume *pv) const
 
- Public Member Functions inherited from G4VParameterisationPara
 G4VParameterisationPara (EAxis axis, G4int nCopies, G4double offset, G4double step, G4VSolid *msolid, DivisionType divType)
 
virtual ~G4VParameterisationPara ()
 
- Public Member Functions inherited from G4VDivisionParameterisation
 G4VDivisionParameterisation (EAxis axis, G4int nDiv, G4double width, G4double offset, DivisionType divType, G4VSolid *motherSolid=nullptr)
 
virtual ~G4VDivisionParameterisation ()
 
virtual G4VSolidComputeSolid (const G4int, G4VPhysicalVolume *)
 
virtual void ComputeTransformation (const G4int copyNo, G4VPhysicalVolume *physVol) const =0
 
const G4StringGetType () const
 
EAxis GetAxis () const
 
G4int GetNoDiv () const
 
G4double GetWidth () const
 
G4double GetOffset () const
 
G4VSolidGetMotherSolid () const
 
void SetType (const G4String &type)
 
G4int VolumeFirstCopyNo () const
 
void SetHalfGap (G4double hg)
 
G4double GetHalfGap () const
 
- Public Member Functions inherited from G4VPVParameterisation
 G4VPVParameterisation ()
 
virtual ~G4VPVParameterisation ()
 
virtual void ComputeTransformation (const G4int, G4VPhysicalVolume *) const =0
 
virtual G4VSolidComputeSolid (const G4int, G4VPhysicalVolume *)
 
virtual G4MaterialComputeMaterial (const G4int repNo, G4VPhysicalVolume *currentVol, const G4VTouchable *parentTouch=nullptr)
 
virtual G4bool IsNested () const
 
virtual G4VVolumeMaterialScannerGetMaterialScanner ()
 
virtual void ComputeDimensions (G4Box &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Tubs &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Trd &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Trap &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Cons &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Sphere &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Orb &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Ellipsoid &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Torus &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Para &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Polycone &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Polyhedra &, const G4int, const G4VPhysicalVolume *) const
 
virtual void ComputeDimensions (G4Hype &, const G4int, const G4VPhysicalVolume *) const
 

Additional Inherited Members

- Protected Member Functions inherited from G4VDivisionParameterisation
void ChangeRotMatrix (G4VPhysicalVolume *physVol, G4double rotZ=0.0) const
 
G4int CalculateNDiv (G4double motherDim, G4double width, G4double offset) const
 
G4double CalculateWidth (G4double motherDim, G4int nDiv, G4double offset) const
 
virtual void CheckParametersValidity ()
 
void CheckOffset (G4double maxPar)
 
void CheckNDivAndWidth (G4double maxPar)
 
virtual G4double GetMaxParameter () const =0
 
G4double OffsetZ () const
 
- Protected Attributes inherited from G4VDivisionParameterisation
G4String ftype
 
EAxis faxis
 
G4int fnDiv = 0
 
G4double fwidth = 0.0
 
G4double foffset = 0.0
 
DivisionType fDivisionType
 
G4VSolidfmotherSolid = nullptr
 
G4bool fReflectedSolid = false
 
G4bool fDeleteSolid = false
 
G4int theVoluFirstCopyNo = 1
 
G4double kCarTolerance
 
G4double fhgap = 0.0
 
- Static Protected Attributes inherited from G4VDivisionParameterisation
static G4ThreadLocal G4RotationMatrixfRot = nullptr
 
static const G4int verbose = 5
 

Detailed Description

Definition at line 161 of file G4ParameterisationPara.hh.

Constructor & Destructor Documentation

◆ G4ParameterisationParaZ()

G4ParameterisationParaZ::G4ParameterisationParaZ ( EAxis  axis,
G4int  nCopies,
G4double  offset,
G4double  step,
G4VSolid msolid,
DivisionType  divType 
)

Definition at line 286 of file G4ParameterisationPara.cc.

290 : G4VParameterisationPara( axis, nDiv, width, offset, msolid, divType )
291{
293 SetType( "DivisionParaZ" );
294
295 G4Para* mpara = (G4Para*)(fmotherSolid);
296 if( divType == DivWIDTH )
297 {
298 fnDiv = CalculateNDiv( 2*mpara->GetZHalfLength(), width, offset );
299 }
300 else if( divType == DivNDIV )
301 {
302 fwidth = CalculateWidth( 2*mpara->GetZHalfLength(), nDiv, offset );
303 }
304
305#ifdef G4DIVDEBUG
306 if( verbose >= -1 )
307 {
308 G4cout << " G4ParameterisationParaZ - # divisions " << fnDiv
309 << " = " << nDiv << G4endl
310 << " Offset " << foffset << " = " << offset << G4endl
311 << " Width " << fwidth << " = " << width << G4endl;
312 }
313#endif
314}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
Definition: G4Para.hh:79
G4double GetZHalfLength() const
void SetType(const G4String &type)
G4double CalculateWidth(G4double motherDim, G4int nDiv, G4double offset) const
G4int CalculateNDiv(G4double motherDim, G4double width, G4double offset) const

◆ ~G4ParameterisationParaZ()

G4ParameterisationParaZ::~G4ParameterisationParaZ ( )

Definition at line 317 of file G4ParameterisationPara.cc.

318{
319}

Member Function Documentation

◆ ComputeDimensions()

void G4ParameterisationParaZ::ComputeDimensions ( G4Para para,
const G4int  copyNo,
const G4VPhysicalVolume pv 
) const
virtual

Reimplemented from G4VPVParameterisation.

Definition at line 356 of file G4ParameterisationPara.cc.

359{
360 //---- The division along Z of a Para will result a Para
361 G4Para* msol = (G4Para*)(fmotherSolid);
362
363 //---- Get
364 G4double pDx = msol->GetXHalfLength();
365 G4double pDy = msol->GetYHalfLength();
366 G4double pDz = fwidth/2. - fhgap;
367 G4double pAlpha = std::atan(msol->GetTanAlpha());
368 G4double pTheta = msol->GetSymAxis().theta();
369 G4double pPhi = msol->GetSymAxis().phi();
370
371 para.SetAllParameters ( pDx, pDy, pDz, pAlpha, pTheta, pPhi );
372
373#ifdef G4DIVDEBUG
374 if( verbose >= -1 )
375 {
376 G4cout << " G4ParameterisationParaZ::ComputeDimensions()"
377 << " - Mother PARA " << G4endl;
378 msol->DumpInfo();
379 G4cout << " - Parameterised PARA: " << G4endl;
380 para.DumpInfo();
381 }
382#endif
383}
double G4double
Definition: G4Types.hh:83
double phi() const
double theta() const
G4double GetTanAlpha() const
G4ThreeVector GetSymAxis() const
void SetAllParameters(G4double pDx, G4double pDy, G4double pDz, G4double pAlpha, G4double pTheta, G4double pPhi)
Definition: G4Para.cc:185
G4double GetYHalfLength() const
G4double GetXHalfLength() const
void DumpInfo() const

◆ ComputeTransformation()

void G4ParameterisationParaZ::ComputeTransformation ( const G4int  copyNo,
G4VPhysicalVolume physVol 
) const
virtual

Implements G4VDivisionParameterisation.

Definition at line 330 of file G4ParameterisationPara.cc.

332{
333 G4Para* msol = (G4Para*)(fmotherSolid );
334 G4double mdz = msol->GetZHalfLength( );
335
336 //----- translation
337 G4double posi = -mdz + OffsetZ() + (copyNo+0.5)*fwidth;
338 G4ThreeVector symAxis = msol->GetSymAxis();
339 G4ThreeVector origin( symAxis * posi / symAxis.z() );
340
341#ifdef G4DIVDEBUG
342 if( verbose >= 2 )
343 {
344 G4cout << std::setprecision(8) << " G4ParameterisationParaZ "
345 << copyNo << G4endl
346 << " Position: " << origin << " - Axis: " << faxis << G4endl;
347 }
348#endif
349
350 //----- set translation
351 physVol->SetTranslation( origin );
352}
void SetTranslation(const G4ThreeVector &v)

◆ GetMaxParameter()

G4double G4ParameterisationParaZ::GetMaxParameter ( ) const
virtual

Implements G4VDivisionParameterisation.

Definition at line 322 of file G4ParameterisationPara.cc.

323{
324 G4Para* msol = (G4Para*)(fmotherSolid);
325 return 2*msol->GetZHalfLength();
326}

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