Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pyG4LogicalVolume.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 // $Id: pyG4LogicalVolume.cc 76884 2013-11-18 12:54:03Z gcosmo $
27 // ====================================================================
28 // pyG4LogicalVolume.cc
29 //
30 // 2005 Q
31 // ====================================================================
32 #include <boost/python.hpp>
33 #include "G4Version.hh"
34 #include "G4LogicalVolume.hh"
35 #include "G4Material.hh"
36 #include "G4VSolid.hh"
37 #include "G4FieldManager.hh"
38 #include "G4VSensitiveDetector.hh"
39 #include "G4UserLimits.hh"
40 #include "G4SmartVoxelHeader.hh"
41 #include "G4MaterialCutsCouple.hh"
43 #include "G4VisAttributes.hh"
44 
45 using namespace boost::python;
46 
47 // ====================================================================
48 // thin wrappers
49 // ====================================================================
50 namespace pyG4LogicalVolume {
51 
54 
57 
59 
62 
63 BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(f_GetMass, GetMass, 0, 3)
64 
65 }
66 
67 using namespace pyG4LogicalVolume;
68 
69 // ====================================================================
70 // module definition
71 // ====================================================================
73 {
74  class_<G4LogicalVolume, G4LogicalVolume*, boost::noncopyable>
75  ("G4LogicalVolume", "logical volume class", no_init)
76  // constructors
77  .def(init<G4VSolid*, G4Material*, const G4String& >())
78  .def(init<G4VSolid*, G4Material*, const G4String&,
79  G4FieldManager* >())
80  .def(init<G4VSolid*, G4Material*, const G4String&,
82  .def(init<G4VSolid*, G4Material*, const G4String&,
84  G4UserLimits* >())
85  .def(init<G4VSolid*, G4Material*, const G4String&,
87  G4UserLimits*, G4bool >())
88  // ---
89  .def("GetName", &G4LogicalVolume::GetName)
90  .def("SetName", &G4LogicalVolume::SetName)
91  // ---
92  .def("GetNoDaughters", &G4LogicalVolume::GetNoDaughters)
93  .def("GetDaughter", &G4LogicalVolume::GetDaughter,
94  return_internal_reference<>())
95  .def("AddDaughter", &G4LogicalVolume::AddDaughter)
96  .def("IsDaughter", &G4LogicalVolume::IsDaughter)
97  .def("IsAncestor", &G4LogicalVolume::IsAncestor)
98  .def("RemoveDaughter", &G4LogicalVolume::RemoveDaughter)
99  .def("ClearDaughters", &G4LogicalVolume::ClearDaughters)
100  .def("TotalVolumeEntities", &G4LogicalVolume::TotalVolumeEntities)
101  // ----
102  .def("GetSolid", f1_GetSolid,
103  return_internal_reference<>())
104  .def("SetSolid", f1_SetSolid)
105  .def("GetMaterial", &G4LogicalVolume::GetMaterial,
106  return_internal_reference<>())
107  .def("SetMaterial", &G4LogicalVolume::SetMaterial)
108  .def("UpdateMaterial", &G4LogicalVolume::UpdateMaterial)
109  // ---
110  .def("GetMass", &G4LogicalVolume::GetMass, f_GetMass())
111  .def("GetFieldManager", &G4LogicalVolume::GetFieldManager,
112  return_internal_reference<>())
113  .def("SetFieldManager", &G4LogicalVolume::SetFieldManager)
114  .def("GetSensitiveDetector", &G4LogicalVolume::GetSensitiveDetector,
115  return_internal_reference<>())
116  .def("GetUserLimits", &G4LogicalVolume::GetUserLimits,
117  return_internal_reference<>())
118  .def("SetUserLimits", &G4LogicalVolume::SetUserLimits)
119  // ---
120  .def("GetVoxelHeader", &G4LogicalVolume::GetVoxelHeader,
121  return_internal_reference<>())
122  .def("SetVoxelHeader", &G4LogicalVolume::SetVoxelHeader)
123  .def("GetSmartless", &G4LogicalVolume::GetSmartless)
124  .def("SetSmartless", &G4LogicalVolume::SetSmartless)
125  .def("IsToOptimise", &G4LogicalVolume::IsToOptimise)
126  .def("SetOptimisation", &G4LogicalVolume::SetOptimisation)
127  // ---
128  .def("IsRootRegion", &G4LogicalVolume::IsRootRegion)
129  .def("SetRegionRootFlag", &G4LogicalVolume::SetRegionRootFlag)
130  .def("IsRegion", &G4LogicalVolume::IsRegion)
131  .def("SetRegion", &G4LogicalVolume::SetRegion)
132  .def("GetRegion", &G4LogicalVolume::GetRegion,
133  return_internal_reference<>())
134  .def("PropagateRegion", &G4LogicalVolume::PropagateRegion)
135  .def("GetMaterialCutsCouple", &G4LogicalVolume::GetMaterialCutsCouple,
136  return_internal_reference<>())
137  .def("SetMaterialCutsCouple", &G4LogicalVolume::SetMaterialCutsCouple)
138  // ---
139  .def("GetVisAttributes", &G4LogicalVolume::GetVisAttributes,
140  return_internal_reference<>())
141  .def("SetVisAttributes", f1_SetVisAttributes)
142  .def("SetVisAttributes", f2_SetVisAttributes)
143  // ---
144  .def("GetFastSimulationManager",
146  return_internal_reference<>())
147  // ---
148  .def("SetBiasWeight", &G4LogicalVolume::SetBiasWeight)
149  .def("GetBiasWeight", &G4LogicalVolume::GetBiasWeight)
150  ;
151 }
G4SmartVoxelHeader * GetVoxelHeader() const
G4double GetSmartless() const
void ClearDaughters()
G4VSolid *(G4LogicalVolume::* f1_GetSolid)() const
void UpdateMaterial(G4Material *pMaterial)
G4String GetName() const
void SetRegionRootFlag(G4bool rreg)
void(G4LogicalVolume::* f1_SetSolid)(G4VSolid *)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(f_CreateTubeVolume, CreateTubeVolume, 4, 6) BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(f_CreateConeVolume
G4bool IsAncestor(const G4VPhysicalVolume *p) const
G4Material * GetMaterial() const
void SetUserLimits(G4UserLimits *pULimits)
typedef void(XMLCALL *XML_ElementDeclHandler)(void *userData
G4VPhysicalVolume * GetDaughter(const G4int i) const
void SetSolid(G4VSolid *pSolid)
G4Region * GetRegion() const
void SetFieldManager(G4FieldManager *pFieldMgr, G4bool forceToAllDaughters)
void SetVoxelHeader(G4SmartVoxelHeader *pVoxel)
void SetRegion(G4Region *reg)
G4double GetBiasWeight() const
G4FieldManager * GetFieldManager() const
bool G4bool
Definition: G4Types.hh:79
void SetOptimisation(G4bool optim)
G4FastSimulationManager * GetFastSimulationManager() const
G4bool IsRootRegion() const
G4bool IsRegion() const
const G4VisAttributes * GetVisAttributes() const
void SetMaterialCutsCouple(G4MaterialCutsCouple *cuts)
void PropagateRegion()
G4int TotalVolumeEntities() const
G4int GetNoDaughters() const
G4UserLimits * GetUserLimits() const
void(G4LogicalVolume::* f2_SetVisAttributes)(const G4VisAttributes &)
void(G4LogicalVolume::* f1_SetVisAttributes)(const G4VisAttributes *)
void SetSmartless(G4double s)
G4bool IsDaughter(const G4VPhysicalVolume *p) const
void SetName(const G4String &pName)
G4double GetMass(G4bool forced=false, G4bool propagate=true, G4Material *parMaterial=0)
const G4MaterialCutsCouple * GetMaterialCutsCouple() const
G4bool IsToOptimise() const
void export_G4LogicalVolume()
void SetBiasWeight(G4double w)
void AddDaughter(G4VPhysicalVolume *p)
void SetMaterial(G4Material *pMaterial)
G4VSensitiveDetector * GetSensitiveDetector() const
void SetVisAttributes(const G4VisAttributes *pVA)
G4VSolid * GetSolid() const
void RemoveDaughter(const G4VPhysicalVolume *p)