Geant4-11
G4GDMLReadStructure.hh
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// G4GDMLReadStructure
27//
28// Class description:
29//
30// GDML class for import of structures.
31
32// Author: Zoltan Torzsok, November 2007
33// --------------------------------------------------------------------
34#ifndef G4GDMLREADSTRUCTURE_HH
35#define G4GDMLREADSTRUCTURE_HH 1
36
37#include "G4Types.hh"
38#include "geomdefs.hh"
39
40#include "G4GDMLReadParamvol.hh"
41
43class G4LogicalVolume;
45
46using G4GDMLAuxMapType = std::map<G4LogicalVolume*, G4GDMLAuxListType>;
47using G4GDMLAssemblyMapType = std::map<G4String, G4AssemblyVolume*>;
48
50{
51 public:
52
54 virtual ~G4GDMLReadStructure();
55
57 G4LogicalVolume* GetVolume(const G4String&) const;
61 const G4GDMLAuxMapType* GetAuxMap() const { return &auxMap; }
62 void Clear(); // Clears internal map and evaluator
63
64 virtual void VolumeRead(const xercesc::DOMElement* const);
65 virtual void Volume_contentRead(const xercesc::DOMElement* const);
66 virtual void StructureRead(const xercesc::DOMElement* const);
67
68 protected:
69
70 void AssemblyRead(const xercesc::DOMElement* const);
71 void DivisionvolRead(const xercesc::DOMElement* const);
72 G4LogicalVolume* FileRead(const xercesc::DOMElement* const);
73 void PhysvolRead(const xercesc::DOMElement* const,
74 G4AssemblyVolume* assembly = 0);
75 void ReplicavolRead(const xercesc::DOMElement* const, G4int number);
76 void ReplicaRead(const xercesc::DOMElement* const replicaElement,
77 G4LogicalVolume* logvol, G4int number);
78 EAxis AxisRead(const xercesc::DOMElement* const axisElement);
79 G4double QuantityRead(const xercesc::DOMElement* const readElement);
80 void BorderSurfaceRead(const xercesc::DOMElement* const);
81 void SkinSurfaceRead(const xercesc::DOMElement* const);
82
83 protected:
84
88 std::map<std::string, G4VPhysicalVolume*> setuptoPV;
89 G4bool strip = false;
90};
91
92#endif
std::vector< G4GDMLAuxStructType > G4GDMLAuxListType
std::map< G4LogicalVolume *, G4GDMLAuxListType > G4GDMLAuxMapType
std::map< G4String, G4AssemblyVolume * > G4GDMLAssemblyMapType
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
const G4GDMLAuxMapType * GetAuxMap() const
void BorderSurfaceRead(const xercesc::DOMElement *const)
virtual void Volume_contentRead(const xercesc::DOMElement *const)
virtual void StructureRead(const xercesc::DOMElement *const)
void AssemblyRead(const xercesc::DOMElement *const)
G4LogicalVolume * GetVolume(const G4String &) const
void PhysvolRead(const xercesc::DOMElement *const, G4AssemblyVolume *assembly=0)
void ReplicaRead(const xercesc::DOMElement *const replicaElement, G4LogicalVolume *logvol, G4int number)
EAxis AxisRead(const xercesc::DOMElement *const axisElement)
G4VPhysicalVolume * GetWorldVolume(const G4String &)
G4GDMLAuxMapType auxMap
G4double QuantityRead(const xercesc::DOMElement *const readElement)
void DivisionvolRead(const xercesc::DOMElement *const)
std::map< std::string, G4VPhysicalVolume * > setuptoPV
void SkinSurfaceRead(const xercesc::DOMElement *const)
G4LogicalVolume * pMotherLogical
void ReplicavolRead(const xercesc::DOMElement *const, G4int number)
virtual void VolumeRead(const xercesc::DOMElement *const)
G4GDMLAssemblyMapType assemblyMap
G4VPhysicalVolume * GetPhysvol(const G4String &) const
G4AssemblyVolume * GetAssembly(const G4String &) const
G4LogicalVolume * FileRead(const xercesc::DOMElement *const)
G4GDMLAuxListType GetVolumeAuxiliaryInformation(G4LogicalVolume *) const
EAxis
Definition: geomdefs.hh:54