Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4tgrVolumeAssembly.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//
27// $Id$
28//
29//
30// class G4tgrVolumeAssembly
31
32// History:
33// - Created. P.Arce, CIEMAT (November 2007)
34// -------------------------------------------------------------------------
35
37#include "G4tgrUtils.hh"
38#include "G4tgrVolumeMgr.hh"
39#include "G4tgrPlaceSimple.hh"
40#include "G4tgrPlaceDivRep.hh"
42#include "G4tgrFileReader.hh"
43#include "G4tgrMessenger.hh"
44
45//-------------------------------------------------------------
47{
48}
49
50
51//-------------------------------------------------------------
53{
54}
55
56
57//-------------------------------------------------------------
58G4tgrVolumeAssembly::G4tgrVolumeAssembly( const std::vector<G4String>& wl )
59{
60 theType = "VOLAssembly";
61
62 //---------- set name
64
65 G4int nVol = G4tgrUtils::GetInt( wl[2] );
66
68 "G4tgrVolumeAssembly::G4tgrVolumeAssembly" );
69
70
71 for(G4int ii=0; ii<nVol*5; ii+=5)
72 {
73#ifdef G4VERBOSE
75 {
76 G4cout << " G4tgrVolumeAssembly::G4tgrVolumeAssembly() -"
77 << " Adding component: " << ii << " - " << wl[ii+3] << G4endl;
78 }
79#endif
80 theComponentNames.push_back(G4tgrUtils::GetString( wl[3+ii+0]));
81 theComponentRMs.push_back(G4tgrUtils::GetString( wl[3+ii+1]));
83 G4tgrUtils::GetDouble(wl[3+ii+3]),
84 G4tgrUtils::GetDouble(wl[3+ii+4])));
85 }
86 theVisibility = 1;
87 theRGBColour = new G4double[4];
88 for (size_t ii=0; ii<4; ii++) { theRGBColour[ii] = -1.; }
89
90 theSolid = 0;
91
92#ifdef G4VERBOSE
94 {
95 G4cout << " Created " << *this << G4endl;
96 }
97#endif
98
99}
100
101
102//-------------------------------------------------------------------------
103G4tgrPlace* G4tgrVolumeAssembly::AddPlace( const std::vector<G4String>& wl )
104{
105 //---------- Check for exact number of words read
106 G4tgrUtils::CheckWLsize( wl, 7, WLSIZE_EQ, " G4tgrVolumeAssembly::AddPlace");
107
108 //---------- set G4tgrPlace
109 G4tgrPlaceSimple* pl = new G4tgrPlaceSimple( wl );
110
111 pl->SetVolume( this );
112 thePlacements.push_back( pl );
113
114#ifdef G4VERBOSE
116 {
117 G4cout << " New placement: " << thePlacements.size()
118 << " added for Volume " << theName
119 << " inside " << pl->GetParentName()
120 << " type " << pl->GetType() << G4endl;
121 }
122#endif
123 //---------- register parent - child
125
126 return pl;
127}
128
129
130// -------------------------------------------------------------------------
131std::ostream& operator<<(std::ostream& os, const G4tgrVolumeAssembly& obj)
132{
133 os << "G4tgrVolumeAssembly= " << obj.theName;
134
135 for( size_t ii = 0; ii < obj.theComponentNames.size(); ii++ )
136 {
137 os << obj.theComponentNames[ii] << " RotMatName= "
138 << obj.theComponentRMs[ii] << " Position= "
139 << obj.theComponentPos[ii].x() << " "
140 << obj.theComponentPos[ii].y() << " "
141 << obj.theComponentPos[ii].z();
142 }
143 os << G4endl;
144
145 return os;
146}
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cout
@ WLSIZE_EQ
Definition: G4tgrUtils.hh:52
@ WLSIZE_GE
Definition: G4tgrUtils.hh:52
std::ostream & operator<<(std::ostream &os, const G4tgrVolumeAssembly &obj)
static G4int GetVerboseLevel()
const G4String & GetParentName() const
Definition: G4tgrPlace.hh:58
const G4String & GetType() const
Definition: G4tgrPlace.hh:61
void SetVolume(G4tgrVolume *vol)
Definition: G4tgrPlace.hh:62
static G4String GetString(const G4String &str)
Definition: G4tgrUtils.cc:178
static void CheckWLsize(const std::vector< G4String > &wl, unsigned int nWCheck, WLSIZEtype st, const G4String &methodName)
Definition: G4tgrUtils.cc:472
static G4int GetInt(const G4String &str)
Definition: G4tgrUtils.cc:427
static G4double GetDouble(const G4String &str, G4double unitval=1.)
Definition: G4tgrUtils.cc:203
std::vector< G4ThreeVector > theComponentPos
std::vector< G4String > theComponentRMs
std::vector< G4String > theComponentNames
virtual G4tgrPlace * AddPlace(const std::vector< G4String > &wl)
void RegisterParentChild(const G4String &parentName, const G4tgrPlace *pl)
static G4tgrVolumeMgr * GetInstance()
G4String theType
Definition: G4tgrVolume.hh:110
G4String theName
Definition: G4tgrVolume.hh:108
G4tgrSolid * theSolid
Definition: G4tgrVolume.hh:114
G4bool theVisibility
Definition: G4tgrVolume.hh:119
G4double * theRGBColour
Definition: G4tgrVolume.hh:120
std::vector< G4tgrPlace * > thePlacements
Definition: G4tgrVolume.hh:116