Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VExternalPhysicalVolume.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// Class G4VExternalPhysicalVolume Implementation
27//
28// Author: John Apostolakis (CERN), October 2019
29// ----------------------------------------------------------------------
30
32#include "G4AffineTransform.hh"
33#include "G4UnitsTable.hh"
34#include "G4LogicalVolume.hh"
35#include "G4VSolid.hh"
36
37// ----------------------------------------------------------------------
38// Constructor
39//
42 const G4ThreeVector& tlate,
43 G4LogicalVolume* pLogical,
44 const G4String& pName,
45 G4VPhysicalVolume* pMother )
46 : G4VPhysicalVolume(pRot, tlate, pName, pLogical, pMother)
47{
48 if (pMother != nullptr)
49 {
50 G4LogicalVolume* motherLogical = pMother->GetLogicalVolume();
51 if (pLogical == motherLogical)
52 {
53 G4Exception("G4VExternalPhysicalVolume::G4VExternalPhysicalVolume()",
54 "GeomVol0002", FatalException,
55 "Cannot place a volume inside itself!");
56 }
57 SetMotherLogical(motherLogical);
58 motherLogical->AddDaughter(this);
59 }
60}
61
62// ----------------------------------------------------------------------
63// Fake default constructor - sets only member data and allocates memory
64// for usage restricted to object persistency.
65//
70
71// ----------------------------------------------------------------------
72// IsMany
73//
75{
76 return fMany;
77}
78
79// ----------------------------------------------------------------------
80// SetMany
81//
83{
84 fMany = overlap;
85}
86
87// ----------------------------------------------------------------------
88// IsReplicated
89//
91{
92 return false;
93}
94
95// ----------------------------------------------------------------------
96// IsParameterised
97//
99{
100 return false;
101}
102
103// ----------------------------------------------------------------------
104// GetParameterisation
105//
110
111// ----------------------------------------------------------------------
112// GetReplicationData
113//
116{
117 // No-operations
118}
119
120// ----------------------------------------------------------------------
121// IsRegularRepeatedStructure
122//
123// This is for specialised repeated volumes (replicas, parameterised vol.)
124//
126{
127 return false;
128}
129
130// ----------------------------------------------------------------------
131// IsRegularRepeatedStructure
132//
133// This is for specialised repeated volumes (replicas, parameterised vol.)
134//
139
140// ----------------------------------------------------------------------
141// VolumeType
142//
143// Information to help identify sub-navigator which will be used.
144//
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
CLHEP::HepRotation G4RotationMatrix
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4LogicalVolume represents a leaf node or unpositioned subtree in the geometry hierarchy....
void AddDaughter(G4VPhysicalVolume *p)
void GetReplicationData(EAxis &axis, G4int &nReplicas, G4double &width, G4double &offset, G4bool &consuming) const final
G4VExternalPhysicalVolume(G4RotationMatrix *pRot, const G4ThreeVector &tlate, G4LogicalVolume *pCurrentLogical, const G4String &pName, G4VPhysicalVolume *pMother)
G4VPVParameterisation * GetParameterisation() const final
G4VPVParameterisation ia an abstract base class for Parameterisation, able to compute the transformat...
G4VPhysicalVolume(G4RotationMatrix *pRot, const G4ThreeVector &tlate, const G4String &pName, G4LogicalVolume *pLogical, G4VPhysicalVolume *pMother)
G4LogicalVolume * GetLogicalVolume() const
void SetMotherLogical(G4LogicalVolume *pMother)
EAxis
Definition geomdefs.hh:54
EVolume
Definition geomdefs.hh:83
@ kExternal
Definition geomdefs.hh:87