Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Attributes | Friends
G4tgrVolumeAssembly Class Reference

#include <G4tgrVolumeAssembly.hh>

Inheritance diagram for G4tgrVolumeAssembly:
G4tgrVolume

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
 
std::vector< G4tgrPlace * > thePlacements
 
G4bool theVisibility
 
G4doubletheRGBColour
 
G4bool theCheckOverlaps
 

Friends

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

Detailed Description

Definition at line 47 of file G4tgrVolumeAssembly.hh.

Constructor & Destructor Documentation

G4tgrVolumeAssembly::G4tgrVolumeAssembly ( )

Definition at line 46 of file G4tgrVolumeAssembly.cc.

47 {
48 }
G4tgrVolumeAssembly::G4tgrVolumeAssembly ( const std::vector< G4String > &  wl)

Definition at line 58 of file G4tgrVolumeAssembly.cc.

References G4tgrUtils::CheckWLsize(), G4cout, G4endl, G4tgrUtils::GetDouble(), G4tgrUtils::GetInt(), G4tgrUtils::GetString(), G4tgrMessenger::GetVerboseLevel(), theComponentNames, theComponentPos, theComponentRMs, G4tgrVolume::theName, G4tgrVolume::theRGBColour, G4tgrVolume::theSolid, G4tgrVolume::theType, G4tgrVolume::theVisibility, and WLSIZE_GE.

59 {
60  theType = "VOLAssembly";
61 
62  //---------- set name
63  theName = G4tgrUtils::GetString( wl[1] );
64 
65  G4int nVol = G4tgrUtils::GetInt( wl[2] );
66 
67  G4tgrUtils::CheckWLsize( wl, 3+nVol*5, WLSIZE_GE,
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 }
CLHEP::Hep3Vector G4ThreeVector
G4bool theVisibility
Definition: G4tgrVolume.hh:119
static void CheckWLsize(const std::vector< G4String > &wl, unsigned int nWCheck, WLSIZEtype st, const G4String &methodName)
Definition: G4tgrUtils.cc:475
int G4int
Definition: G4Types.hh:78
std::vector< G4ThreeVector > theComponentPos
G4String theType
Definition: G4tgrVolume.hh:110
G4GLOB_DLL std::ostream G4cout
static G4int GetVerboseLevel()
G4tgrSolid * theSolid
Definition: G4tgrVolume.hh:114
G4String theName
Definition: G4tgrVolume.hh:108
static G4int GetInt(const G4String &str)
Definition: G4tgrUtils.cc:430
static G4double GetDouble(const G4String &str, G4double unitval=1.)
Definition: G4tgrUtils.cc:205
std::vector< G4String > theComponentRMs
static G4String GetString(const G4String &str)
Definition: G4tgrUtils.cc:180
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
std::vector< G4String > theComponentNames
G4double * theRGBColour
Definition: G4tgrVolume.hh:120
G4tgrVolumeAssembly::~G4tgrVolumeAssembly ( )

Definition at line 52 of file G4tgrVolumeAssembly.cc.

53 {
54 }

Member Function Documentation

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

Reimplemented from G4tgrVolume.

Definition at line 103 of file G4tgrVolumeAssembly.cc.

References G4tgrUtils::CheckWLsize(), G4cout, G4endl, G4tgrVolumeMgr::GetInstance(), G4tgrPlace::GetParentName(), G4tgrPlace::GetType(), G4tgrMessenger::GetVerboseLevel(), readPY::pl, G4tgrVolumeMgr::RegisterParentChild(), G4tgrPlace::SetVolume(), G4tgrVolume::theName, G4tgrVolume::thePlacements, and WLSIZE_EQ.

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 }
const G4String & GetType() const
Definition: G4tgrPlace.hh:61
static void CheckWLsize(const std::vector< G4String > &wl, unsigned int nWCheck, WLSIZEtype st, const G4String &methodName)
Definition: G4tgrUtils.cc:475
tuple pl
Definition: readPY.py:5
G4GLOB_DLL std::ostream G4cout
void SetVolume(G4tgrVolume *vol)
Definition: G4tgrPlace.hh:62
static G4int GetVerboseLevel()
std::vector< G4tgrPlace * > thePlacements
Definition: G4tgrVolume.hh:116
static G4tgrVolumeMgr * GetInstance()
G4String theName
Definition: G4tgrVolume.hh:108
const G4String & GetParentName() const
Definition: G4tgrPlace.hh:58
void RegisterParentChild(const G4String &parentName, const G4tgrPlace *pl)
#define G4endl
Definition: G4ios.hh:61
const G4String& G4tgrVolumeAssembly::GetComponentName ( G4int  ii) const
inline

Definition at line 58 of file G4tgrVolumeAssembly.hh.

References theComponentNames.

Referenced by G4tgbVolume::ConstructG4PhysVol().

59  { return theComponentNames[ii]; }
std::vector< G4String > theComponentNames
G4ThreeVector G4tgrVolumeAssembly::GetComponentPos ( G4int  ii) const
inline

Definition at line 62 of file G4tgrVolumeAssembly.hh.

References theComponentPos.

Referenced by G4tgbVolume::ConstructG4PhysVol().

63  { return theComponentPos[ii]; }
std::vector< G4ThreeVector > theComponentPos
const G4String& G4tgrVolumeAssembly::GetComponentRM ( G4int  ii) const
inline

Definition at line 60 of file G4tgrVolumeAssembly.hh.

References theComponentRMs.

Referenced by G4tgbVolume::ConstructG4PhysVol().

61  { return theComponentRMs[ii]; }
std::vector< G4String > theComponentRMs
G4int G4tgrVolumeAssembly::GetNoComponents ( ) const
inline

Definition at line 64 of file G4tgrVolumeAssembly.hh.

References theComponentNames.

Referenced by G4tgbVolume::ConstructG4PhysVol().

65  { return theComponentNames.size(); }
std::vector< G4String > theComponentNames

Friends And Related Function Documentation

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

Definition at line 131 of file G4tgrVolumeAssembly.cc.

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 }
std::vector< G4ThreeVector > theComponentPos
G4String theName
Definition: G4tgrVolume.hh:108
std::vector< G4String > theComponentRMs
#define G4endl
Definition: G4ios.hh:61
std::vector< G4String > theComponentNames

Field Documentation

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

Definition at line 73 of file G4tgrVolumeAssembly.hh.

Referenced by G4tgrVolumeAssembly(), GetComponentPos(), and operator<<().

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

Definition at line 72 of file G4tgrVolumeAssembly.hh.

Referenced by G4tgrVolumeAssembly(), GetComponentRM(), and operator<<().


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