Geant4-11
Public Member Functions | Protected Attributes | Friends
G4tgrVolume Class Reference

#include <G4tgrVolume.hh>

Inheritance diagram for G4tgrVolume:
G4tgrVolumeAssembly G4tgrVolumeDivision

Public Member Functions

void AddCheckOverlaps (const std::vector< G4String > &wl)
 
virtual G4tgrPlaceAddPlace (const std::vector< G4String > &wl)
 
G4tgrPlaceParameterisationAddPlaceParam (const std::vector< G4String > &wl)
 
G4tgrPlaceDivRepAddPlaceReplica (const std::vector< G4String > &wl)
 
void AddRGBColour (const std::vector< G4String > &wl)
 
void AddVisibility (const std::vector< G4String > &wl)
 
 G4tgrVolume ()
 
 G4tgrVolume (const G4tgrVolume &vol)
 
 G4tgrVolume (const std::vector< G4String > &wl)
 
G4bool GetCheckOverlaps () const
 
G4doubleGetColour () const
 
const G4StringGetMaterialName () const
 
const G4StringGetName () const
 
const std::vector< G4tgrPlace * > GetPlacements () const
 
G4doubleGetRGBColour () const
 
G4tgrSolidGetSolid () const
 
const G4StringGetType () const
 
G4bool GetVisibility () const
 
virtual G4tgrVolumeGetVolume (G4int ii) const
 
void SetName (const G4String &name)
 
virtual ~G4tgrVolume ()
 

Protected Attributes

G4bool theCheckOverlaps = false
 
G4String theMaterialName = ""
 
G4String theName = ""
 
std::vector< G4tgrPlace * > thePlacements
 
G4doubletheRGBColour = nullptr
 
G4tgrSolidtheSolid = nullptr
 
G4String theType = ""
 
G4bool theVisibility = false
 

Friends

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

Detailed Description

Definition at line 54 of file G4tgrVolume.hh.

Constructor & Destructor Documentation

◆ G4tgrVolume() [1/3]

G4tgrVolume::G4tgrVolume ( )

Definition at line 44 of file G4tgrVolume.cc.

45{
46}

◆ G4tgrVolume() [2/3]

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

Definition at line 55 of file G4tgrVolume.cc.

56{
57 theType = "VOLSimple";
58
59 //---------- set name
61
62 theVisibility = true;
63 theRGBColour = new G4double[4];
64 for(std::size_t ii = 0; ii < 4; ++ii)
65 {
66 theRGBColour[ii] = -1.;
67 }
68 theCheckOverlaps = false;
69
70 if(wl.size() != 4)
71 {
72 //:VOLU tag to build a volume creating solid and material
73 //---------- set material name
74 theMaterialName = G4tgrUtils::GetString(wl[wl.size() - 1]);
75
76 //---------- create only vector<double> of theSolidParams
78
79#ifdef G4VERBOSE
81 {
82 G4cout << "Created from new solid: " << *this << G4endl;
83 }
84#endif
85 }
86 else
87 {
88 //:VOLU tag to build a volume assigning material to solid
89 //---------- set material name
92
93#ifdef G4VERBOSE
95 {
96 G4cout << "Created from existing solid: " << *this << G4endl;
97 }
98#endif
99 }
100}
double G4double
Definition: G4Types.hh:83
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
static G4int GetVerboseLevel()
static G4String GetString(const G4String &str)
Definition: G4tgrUtils.cc:173
G4tgrSolid * FindSolid(const G4String &name, G4bool exists=false)
G4tgrSolid * CreateSolid(const std::vector< G4String > &wl, G4bool bVOLUtag)
static G4tgrVolumeMgr * GetInstance()
G4String theMaterialName
Definition: G4tgrVolume.hh:106
G4bool theCheckOverlaps
Definition: G4tgrVolume.hh:115
G4String theType
Definition: G4tgrVolume.hh:104
G4String theName
Definition: G4tgrVolume.hh:102
G4tgrSolid * theSolid
Definition: G4tgrVolume.hh:108
G4bool theVisibility
Definition: G4tgrVolume.hh:113
G4double * theRGBColour
Definition: G4tgrVolume.hh:114

References G4tgrVolumeMgr::CreateSolid(), G4tgrVolumeMgr::FindSolid(), G4cout, G4endl, G4tgrVolumeMgr::GetInstance(), G4tgrUtils::GetString(), G4tgrMessenger::GetVerboseLevel(), theCheckOverlaps, theMaterialName, theName, theRGBColour, theSolid, theType, and theVisibility.

◆ G4tgrVolume() [3/3]

G4tgrVolume::G4tgrVolume ( const G4tgrVolume vol)

Definition at line 103 of file G4tgrVolume.cc.

104{
105 theName = vol.GetName();
106 theType = vol.GetType();
108 theSolid = vol.GetSolid();
113}
G4bool GetVisibility() const
Definition: G4tgrVolume.hh:90
G4bool GetCheckOverlaps() const
Definition: G4tgrVolume.hh:94
const G4String & GetName() const
Definition: G4tgrVolume.hh:83
G4double * GetRGBColour() const
Definition: G4tgrVolume.hh:92
G4tgrSolid * GetSolid() const
Definition: G4tgrVolume.hh:86
const G4String & GetType() const
Definition: G4tgrVolume.hh:85
const G4String & GetMaterialName() const
Definition: G4tgrVolume.hh:87
std::vector< G4tgrPlace * > thePlacements
Definition: G4tgrVolume.hh:110
const std::vector< G4tgrPlace * > GetPlacements() const
Definition: G4tgrVolume.hh:89

References GetCheckOverlaps(), GetMaterialName(), GetName(), GetPlacements(), GetRGBColour(), GetSolid(), GetType(), GetVisibility(), theCheckOverlaps, theMaterialName, theName, thePlacements, theRGBColour, theSolid, theType, and theVisibility.

◆ ~G4tgrVolume()

G4tgrVolume::~G4tgrVolume ( )
virtual

Definition at line 49 of file G4tgrVolume.cc.

50{
51 delete[] theRGBColour;
52}

References theRGBColour.

Member Function Documentation

◆ AddCheckOverlaps()

void G4tgrVolume::AddCheckOverlaps ( const std::vector< G4String > &  wl)

------— Set check overlaps

Definition at line 251 of file G4tgrVolume.cc.

252{
253 //---------- Check for exact number of words read
254 G4tgrUtils::CheckWLsize(wl, 3, WLSIZE_GE, " G4tgrVolume::AddCheckOverlaps");
255
258}
@ WLSIZE_GE
Definition: G4tgrUtils.hh:51
static void CheckWLsize(const std::vector< G4String > &wl, unsigned int nWCheck, WLSIZEtype st, const G4String &methodName)
Definition: G4tgrUtils.cc:490
static G4bool GetBool(const G4String &str)
Definition: G4tgrUtils.cc:464

References G4tgrUtils::CheckWLsize(), G4tgrUtils::GetBool(), theCheckOverlaps, and WLSIZE_GE.

◆ AddPlace()

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

Reimplemented in G4tgrVolumeAssembly.

Definition at line 126 of file G4tgrVolume.cc.

127{
128 //---------- Check for exact number of words read
129 G4tgrUtils::CheckWLsize(wl, 8, WLSIZE_EQ, " G4tgrVolume::AddPlace");
130 //---------- set G4tgrPlace
132 //---------- check that there is no previous placement in
133 // the same parent with the same copyNo
134 for(auto ite = thePlacements.cbegin(); ite != thePlacements.cend(); ++ite)
135 {
136 if(((*ite)->GetCopyNo() == pl->GetCopyNo()) &&
137 ((*ite)->GetParentName() == pl->GetParentName()))
138 {
139 G4String ErrMessage =
140 "Repeated placement. Volume " + theName + " in " + pl->GetParentName();
141 G4Exception("G4tgrVolume::AddPlace()", "InvalidArgument",
142 FatalErrorInArgument, ErrMessage);
143 }
144 }
145
146 pl->SetVolume(this);
147 thePlacements.push_back(pl);
148
149#ifdef G4VERBOSE
151 {
152 G4cout << " G4tgrVolume: New placement: " << thePlacements.size()
153 << " added for Volume " << theName << " inside "
154 << pl->GetParentName() << " type " << pl->GetType() << G4endl;
155 }
156#endif
157 //---------- register parent - child
159
160 return pl;
161}
@ FatalErrorInArgument
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
@ WLSIZE_EQ
Definition: G4tgrUtils.hh:47
const G4String & GetParentName() const
Definition: G4tgrPlace.hh:52
const G4String & GetType() const
Definition: G4tgrPlace.hh:55
unsigned int GetCopyNo() const
Definition: G4tgrPlace.hh:54
void SetVolume(G4tgrVolume *vol)
Definition: G4tgrPlace.hh:56
void RegisterParentChild(const G4String &parentName, const G4tgrPlace *pl)

References G4tgrUtils::CheckWLsize(), FatalErrorInArgument, G4cout, G4endl, G4Exception(), G4tgrPlace::GetCopyNo(), G4tgrVolumeMgr::GetInstance(), G4tgrPlace::GetParentName(), G4tgrPlace::GetType(), G4tgrMessenger::GetVerboseLevel(), G4tgrVolumeMgr::RegisterParentChild(), G4tgrPlace::SetVolume(), theName, thePlacements, and WLSIZE_EQ.

Referenced by G4tgrLineProcessor::ProcessLine().

◆ AddPlaceParam()

G4tgrPlaceParameterisation * G4tgrVolume::AddPlaceParam ( const std::vector< G4String > &  wl)

Definition at line 201 of file G4tgrVolume.cc.

202{
203 //---------- set G4tgrPlaceParameterisation
205
206 pl->SetVolume(this);
207 thePlacements.push_back(pl);
208
209#ifdef G4VERBOSE
211 {
212 G4cout << " G4tgrVolume: New placement Param: " << thePlacements.size()
213 << " added for Volume " << theName << " inside "
214 << pl->GetParentName() << G4endl;
215 }
216#endif
217 //---------- register parent - child
219
220 return pl;
221}

References G4cout, G4endl, G4tgrVolumeMgr::GetInstance(), G4tgrPlace::GetParentName(), G4tgrMessenger::GetVerboseLevel(), G4tgrVolumeMgr::RegisterParentChild(), G4tgrPlace::SetVolume(), theName, and thePlacements.

Referenced by G4tgrLineProcessor::ProcessLine().

◆ AddPlaceReplica()

G4tgrPlaceDivRep * G4tgrVolume::AddPlaceReplica ( const std::vector< G4String > &  wl)

Definition at line 164 of file G4tgrVolume.cc.

165{
166 //---------- Check for exact number of words read
167 G4tgrUtils::CheckWLsize(wl, 6, WLSIZE_GE, " G4tgrVolume::AddPlaceReplica");
168 G4tgrUtils::CheckWLsize(wl, 7, WLSIZE_LE, " G4tgrVolume::AddPlaceReplica");
169
170 if((wl.size() == 7) && (G4tgrUtils::GetDouble(wl[6]) != 0.) &&
171 (wl[3] != "PHI"))
172 {
173 G4Exception("G4tgrVolume::AddPlaceReplica",
174 "Offset set for replica not along PHI, it will not be used",
176 G4String("Volume " + wl[1] + " in volume " + wl[2]).c_str());
177 }
178
179 //---------- set G4tgrPlace
181 pl->SetType("PlaceReplica");
182 pl->SetVolume(this);
183 thePlacements.push_back(pl);
184
185#ifdef G4VERBOSE
187 {
188 G4cout << " G4tgrVolume: New placement replica: " << thePlacements.size()
189 << " added for Volume " << theName << " inside "
190 << pl->GetParentName() << G4endl;
191 }
192#endif
193 //---------- register parent - child
195
196 return pl;
197}
@ JustWarning
@ WLSIZE_LE
Definition: G4tgrUtils.hh:49
void SetType(const G4String &typ)
Definition: G4tgrPlace.hh:57
static G4double GetDouble(const G4String &str, G4double unitval=1.)
Definition: G4tgrUtils.cc:198

References G4tgrUtils::CheckWLsize(), G4cout, G4endl, G4Exception(), G4tgrUtils::GetDouble(), G4tgrVolumeMgr::GetInstance(), G4tgrPlace::GetParentName(), G4tgrMessenger::GetVerboseLevel(), JustWarning, G4tgrVolumeMgr::RegisterParentChild(), G4tgrPlace::SetType(), G4tgrPlace::SetVolume(), theName, thePlacements, WLSIZE_GE, and WLSIZE_LE.

Referenced by G4tgrLineProcessor::ProcessLine().

◆ AddRGBColour()

void G4tgrVolume::AddRGBColour ( const std::vector< G4String > &  wl)

------— Set transparency

Definition at line 234 of file G4tgrVolume.cc.

235{
236 //---------- Check for exact number of words read
237 G4tgrUtils::CheckWLsize(wl, 5, WLSIZE_GE, " G4tgrVolume::AddRGBColour");
238
239 //---------- Set RGB colour
244 if(wl.size() == 6)
245 {
247 }
248}

References G4tgrUtils::CheckWLsize(), G4tgrUtils::GetDouble(), theRGBColour, and WLSIZE_GE.

◆ AddVisibility()

void G4tgrVolume::AddVisibility ( const std::vector< G4String > &  wl)

Definition at line 224 of file G4tgrVolume.cc.

225{
226 //---------- Check for exact number of words read
227 G4tgrUtils::CheckWLsize(wl, 3, WLSIZE_EQ, " G4tgrVolume::AddVisibility");
228
229 //---------- Set visibility
231}

References G4tgrUtils::CheckWLsize(), G4tgrUtils::GetBool(), theVisibility, and WLSIZE_EQ.

◆ GetCheckOverlaps()

G4bool G4tgrVolume::GetCheckOverlaps ( ) const
inline

Definition at line 94 of file G4tgrVolume.hh.

94{ return theCheckOverlaps; }

References theCheckOverlaps.

Referenced by G4tgbVolume::ConstructG4PhysVol(), and G4tgrVolume().

◆ GetColour()

G4double * G4tgrVolume::GetColour ( ) const
inline

Definition at line 91 of file G4tgrVolume.hh.

91{ return theRGBColour; }

References theRGBColour.

Referenced by G4tgbVolume::GetColour().

◆ GetMaterialName()

const G4String & G4tgrVolume::GetMaterialName ( ) const
inline

Definition at line 87 of file G4tgrVolume.hh.

87{ return theMaterialName; }

References theMaterialName.

Referenced by G4tgbVolume::ConstructG4LogVol(), G4tgbVolume::ConstructG4PhysVol(), and G4tgrVolume().

◆ GetName()

const G4String & G4tgrVolume::GetName ( ) const
inline

◆ GetPlacements()

const std::vector< G4tgrPlace * > G4tgrVolume::GetPlacements ( ) const
inline

Definition at line 89 of file G4tgrVolume.hh.

89{return thePlacements;}

References thePlacements.

Referenced by G4tgrVolume(), and G4tgrVolumeMgr::GetTopVolume().

◆ GetRGBColour()

G4double * G4tgrVolume::GetRGBColour ( ) const
inline

Definition at line 92 of file G4tgrVolume.hh.

92{ return theRGBColour; }

References theRGBColour.

Referenced by G4tgrVolume().

◆ GetSolid()

G4tgrSolid * G4tgrVolume::GetSolid ( ) const
inline

◆ GetType()

const G4String & G4tgrVolume::GetType ( ) const
inline

◆ GetVisibility()

G4bool G4tgrVolume::GetVisibility ( ) const
inline

Definition at line 90 of file G4tgrVolume.hh.

90{ return theVisibility; }

References theVisibility.

Referenced by G4tgrVolume(), and G4tgbVolume::GetVisibility().

◆ GetVolume()

G4tgrVolume * G4tgrVolume::GetVolume ( G4int  ii) const
virtual

Definition at line 116 of file G4tgrVolume.cc.

117{
118 G4String ErrMessage = "Should only be called for composite solids... " +
120 G4Exception("G4tgrVolume::GetVolume()", "InvalidCall", FatalException,
121 ErrMessage);
122 return nullptr;
123}
@ FatalException
static G4String ConvertToString(G4bool boolVal)
Definition: G4UIcommand.cc:445

References G4UIcommand::ConvertToString(), FatalException, and G4Exception().

◆ SetName()

void G4tgrVolume::SetName ( const G4String name)
inline

Definition at line 84 of file G4tgrVolume.hh.

84{ theName = name; }
const char * name(G4int ptype)

References G4InuclParticleNames::name(), and theName.

Friends And Related Function Documentation

◆ operator<<

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

Definition at line 261 of file G4tgrVolume.cc.

262{
263 os << "G4tgrVolume= " << obj.theName << " Type= " << obj.theType
264 << " Material= " << obj.theMaterialName << " Visibility "
265 << obj.theVisibility << " Colour " << (obj.theRGBColour)[0] << " "
266 << (obj.theRGBColour)[1] << " " << (obj.theRGBColour)[2] << " "
267 << (obj.theRGBColour)[3] << " "
268 << " CheckOverlaps " << obj.theCheckOverlaps << " N placements "
269 << obj.thePlacements.size() << G4endl;
270
271 return os;
272}

Field Documentation

◆ theCheckOverlaps

G4bool G4tgrVolume::theCheckOverlaps = false
protected

Definition at line 115 of file G4tgrVolume.hh.

Referenced by AddCheckOverlaps(), G4tgrVolume(), and GetCheckOverlaps().

◆ theMaterialName

G4String G4tgrVolume::theMaterialName = ""
protected

◆ theName

G4String G4tgrVolume::theName = ""
protected

◆ thePlacements

std::vector<G4tgrPlace*> G4tgrVolume::thePlacements
protected

◆ theRGBColour

G4double* G4tgrVolume::theRGBColour = nullptr
protected

◆ theSolid

G4tgrSolid* G4tgrVolume::theSolid = nullptr
protected

◆ theType

G4String G4tgrVolume::theType = ""
protected

◆ theVisibility

G4bool G4tgrVolume::theVisibility = false
protected

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