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

#include <G4tgrVolumeAssembly.hh>

+ Inheritance diagram for G4tgrVolumeAssembly:

Public Member Functions

 G4tgrVolumeAssembly ()
 
 G4tgrVolumeAssembly (const std::vector< G4String > &wl)
 
 ~G4tgrVolumeAssembly ()
 
virtual G4tgrPlaceAddPlace (const std::vector< G4String > &wl)
 
const G4StringGetComponentName (G4int ii) const
 
const G4StringGetComponentRM (G4int ii) const
 
G4ThreeVector GetComponentPos (G4int ii) const
 
G4int GetNoComponents () const
 
- Public Member Functions inherited from G4tgrVolume
 G4tgrVolume ()
 
 G4tgrVolume (const std::vector< G4String > &wl)
 
 G4tgrVolume (const G4tgrVolume &vol)
 
virtual ~G4tgrVolume ()
 
G4tgrPlaceDivRepAddPlaceReplica (const std::vector< G4String > &wl)
 
G4tgrPlaceParameterisationAddPlaceParam (const std::vector< G4String > &wl)
 
void AddVisibility (const std::vector< G4String > &wl)
 
void AddRGBColour (const std::vector< G4String > &wl)
 
void AddCheckOverlaps (const std::vector< G4String > &wl)
 
const G4StringGetName () const
 
void SetName (const G4String &name)
 
const G4StringGetType () const
 
G4tgrSolidGetSolid () const
 
const G4StringGetMaterialName () const
 
const std::vector< G4tgrPlace * > GetPlacements () const
 
G4bool GetVisibility () const
 
G4doubleGetColour () const
 
G4doubleGetRGBColour () const
 
G4bool GetCheckOverlaps () const
 
virtual G4tgrVolumeGetVolume (G4int ii) const
 

Protected Attributes

std::vector< G4StringtheComponentNames
 
std::vector< G4StringtheComponentRMs
 
std::vector< G4ThreeVectortheComponentPos
 
- Protected Attributes inherited from G4tgrVolume
G4String theName = ""
 
G4String theType = ""
 
G4String theMaterialName = ""
 
G4tgrSolidtheSolid = nullptr
 
std::vector< G4tgrPlace * > thePlacements
 
G4bool theVisibility = false
 
G4doubletheRGBColour = nullptr
 
G4bool theCheckOverlaps = false
 

Friends

std::ostream & operator<< (std::ostream &os, const G4tgrVolumeAssembly &obj)
 

Detailed Description

Definition at line 41 of file G4tgrVolumeAssembly.hh.

Constructor & Destructor Documentation

◆ G4tgrVolumeAssembly() [1/2]

G4tgrVolumeAssembly::G4tgrVolumeAssembly ( )

Definition at line 41 of file G4tgrVolumeAssembly.cc.

42{
43}

◆ G4tgrVolumeAssembly() [2/2]

G4tgrVolumeAssembly::G4tgrVolumeAssembly ( const std::vector< G4String > & wl)

Definition at line 51 of file G4tgrVolumeAssembly.cc.

52{
53 theType = "VOLAssembly";
54
55 //---------- set name
57
58 G4int nVol = G4tgrUtils::GetInt(wl[2]);
59
60 G4tgrUtils::CheckWLsize(wl, 3 + nVol * 5, WLSIZE_GE,
61 "G4tgrVolumeAssembly::G4tgrVolumeAssembly");
62
63 for(G4int ii = 0; ii < nVol * 5; ii += 5)
64 {
65#ifdef G4VERBOSE
67 {
68 G4cout << " G4tgrVolumeAssembly::G4tgrVolumeAssembly() -"
69 << " Adding component: " << ii << " - " << wl[ii + 3] << G4endl;
70 }
71#endif
72 theComponentNames.push_back(G4tgrUtils::GetString(wl[3 + ii + 0]));
73 theComponentRMs.push_back(G4tgrUtils::GetString(wl[3 + ii + 1]));
74 theComponentPos.push_back(
76 G4tgrUtils::GetDouble(wl[3 + ii + 3]),
77 G4tgrUtils::GetDouble(wl[3 + ii + 4])));
78 }
79 theVisibility = 1;
80 theRGBColour = new G4double[4];
81 for(std::size_t ii = 0; ii < 4; ++ii)
82 {
83 theRGBColour[ii] = -1.;
84 }
85
86 theSolid = nullptr;
87
88#ifdef G4VERBOSE
90 {
91 G4cout << " Created " << *this << G4endl;
92 }
93#endif
94}
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
@ WLSIZE_GE
Definition G4tgrUtils.hh:51
static G4int GetVerboseLevel()
static G4String GetString(const G4String &str)
static void CheckWLsize(const std::vector< G4String > &wl, unsigned int nWCheck, WLSIZEtype st, const G4String &methodName)
static G4int GetInt(const G4String &str)
static G4double GetDouble(const G4String &str, G4double unitval=1.)
std::vector< G4ThreeVector > theComponentPos
std::vector< G4String > theComponentRMs
std::vector< G4String > theComponentNames
G4String theType
G4String theName
G4tgrSolid * theSolid
G4bool theVisibility
G4double * theRGBColour

◆ ~G4tgrVolumeAssembly()

G4tgrVolumeAssembly::~G4tgrVolumeAssembly ( )

Definition at line 46 of file G4tgrVolumeAssembly.cc.

47{
48}

Member Function Documentation

◆ AddPlace()

G4tgrPlace * G4tgrVolumeAssembly::AddPlace ( const std::vector< G4String > & wl)
virtual

Reimplemented from G4tgrVolume.

Definition at line 97 of file G4tgrVolumeAssembly.cc.

98{
99 //---------- Check for exact number of words read
100 G4tgrUtils::CheckWLsize(wl, 7, WLSIZE_EQ, " G4tgrVolumeAssembly::AddPlace");
101
102 //---------- set G4tgrPlace
104
105 pl->SetVolume(this);
106 thePlacements.push_back(pl);
107
108#ifdef G4VERBOSE
110 {
111 G4cout << " New placement: " << thePlacements.size()
112 << " added for Volume " << theName << " inside "
113 << pl->GetParentName() << " type " << pl->GetType() << G4endl;
114 }
115#endif
116 //---------- register parent - child
118
119 return pl;
120}
@ WLSIZE_EQ
Definition G4tgrUtils.hh:47
const G4String & GetParentName() const
Definition G4tgrPlace.hh:52
const G4String & GetType() const
Definition G4tgrPlace.hh:55
void SetVolume(G4tgrVolume *vol)
Definition G4tgrPlace.hh:56
void RegisterParentChild(const G4String &parentName, const G4tgrPlace *pl)
static G4tgrVolumeMgr * GetInstance()
std::vector< G4tgrPlace * > thePlacements

◆ GetComponentName()

const G4String & G4tgrVolumeAssembly::GetComponentName ( G4int ii) const
inline

Definition at line 52 of file G4tgrVolumeAssembly.hh.

53 {
54 return theComponentNames[ii];
55 }

Referenced by G4tgbVolume::ConstructG4PhysVol().

◆ GetComponentPos()

G4ThreeVector G4tgrVolumeAssembly::GetComponentPos ( G4int ii) const
inline

Definition at line 57 of file G4tgrVolumeAssembly.hh.

57{return theComponentPos[ii];}

Referenced by G4tgbVolume::ConstructG4PhysVol().

◆ GetComponentRM()

const G4String & G4tgrVolumeAssembly::GetComponentRM ( G4int ii) const
inline

Definition at line 56 of file G4tgrVolumeAssembly.hh.

56{return theComponentRMs[ii];}

Referenced by G4tgbVolume::ConstructG4PhysVol().

◆ GetNoComponents()

G4int G4tgrVolumeAssembly::GetNoComponents ( ) const
inline

Definition at line 58 of file G4tgrVolumeAssembly.hh.

58{ return (G4int)theComponentNames.size(); }

Referenced by G4tgbVolume::ConstructG4PhysVol().

Friends And Related Symbol Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream & os,
const G4tgrVolumeAssembly & obj )
friend

Definition at line 123 of file G4tgrVolumeAssembly.cc.

124{
125 os << "G4tgrVolumeAssembly= " << obj.theName;
126
127 for(std::size_t ii = 0; ii < obj.theComponentNames.size(); ++ii)
128 {
129 os << obj.theComponentNames[ii]
130 << " RotMatName= " << obj.theComponentRMs[ii]
131 << " Position= " << obj.theComponentPos[ii].x() << " "
132 << obj.theComponentPos[ii].y() << " " << obj.theComponentPos[ii].z();
133 }
134 os << G4endl;
135
136 return os;
137}

Member Data Documentation

◆ theComponentNames

std::vector<G4String> G4tgrVolumeAssembly::theComponentNames
protected

Definition at line 65 of file G4tgrVolumeAssembly.hh.

Referenced by G4tgrVolumeAssembly(), GetComponentName(), and GetNoComponents().

◆ theComponentPos

std::vector<G4ThreeVector> G4tgrVolumeAssembly::theComponentPos
protected

Definition at line 67 of file G4tgrVolumeAssembly.hh.

Referenced by G4tgrVolumeAssembly(), and GetComponentPos().

◆ theComponentRMs

std::vector<G4String> G4tgrVolumeAssembly::theComponentRMs
protected

Definition at line 66 of file G4tgrVolumeAssembly.hh.

Referenced by G4tgrVolumeAssembly(), and GetComponentRM().


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