Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pyG4VisManager.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: pyG4VisManager.cc 66892 2013-01-17 10:57:59Z gunter $
27 // ====================================================================
28 // pyG4VisManager.cc
29 //
30 // 2005 Q
31 // ====================================================================
32 #include <boost/python.hpp>
33 #include "G4VisManager.hh"
35 
36 using namespace boost::python;
37 
38 // ====================================================================
39 // wrappers
40 // ====================================================================
41 class PyG4VisManager : public G4VisManager {
42 public:
43  PyG4VisManager() { SetVerboseLevel(quiet); }
45 
47  return dynamic_cast<PyG4VisManager*>(fpConcreteInstance);
48  }
49 
50  virtual void RegisterGraphicsSystems() { }
51 
52  virtual void RegisterModelFactories() {
53  RegisterModelFactory(new G4TrajectoryDrawByChargeFactory());
54  RegisterModelFactory(new G4TrajectoryDrawByParticleIDFactory());
55  }
56 };
57 
58 // ====================================================================
59 // thin wrappers
60 // ====================================================================
61 namespace pyG4VisManager {
62 
69 
70 }
71 
72 using namespace pyG4VisManager;
73 
74 // ====================================================================
75 // module definition
76 // ====================================================================
78 {
79  scope in_PyG4VisManager =
80  class_<PyG4VisManager, boost::noncopyable>
81  ("G4VisManager", "visualization manager")
82  // ---
83  .def("GetConcreteInstance", &PyG4VisManager::_get_concrete_instance,
84  "Get an instance of G4VisManager",
85  return_value_policy<reference_existing_object>())
86  .staticmethod("GetConcreteInstance")
87  // ---
88  .def("SetVerboseLevel", f1_SetVerboseLevel)
89  .def("SetVerboseLevel", f2_SetVerboseLevel)
90  .def("SetVerboseLevel", f3_SetVerboseLevel)
91  .def("GetVerbosity", &PyG4VisManager::GetVerbosity)
92  .staticmethod("GetVerbosity")
93  .def("Initialize", &PyG4VisManager::Initialize)
94  .def("RegisterGraphicsSystem", &PyG4VisManager::RegisterGraphicsSystem)
95  ;
96 
97  // enum LineStyle
98  enum_<G4VisManager::Verbosity>("Verbosity")
99  .value("quiet", G4VisManager::quiet)
100  .value("startup", G4VisManager::startup)
101  .value("errors", G4VisManager::errors)
102  .value("warnings", G4VisManager::warnings)
103  .value("confirmations", G4VisManager::confirmations)
104  .value("parameters", G4VisManager::parameters)
105  .value("all", G4VisManager::all)
106  ;
107 }
108 
void SetVerboseLevel(G4int)
typedef void(XMLCALL *XML_ElementDeclHandler)(void *userData
void(PyG4VisManager::* f2_SetVerboseLevel)(const G4String &)
int G4int
Definition: G4Types.hh:78
virtual void RegisterModelFactories()
void(PyG4VisManager::* f1_SetVerboseLevel)(G4int)
virtual void RegisterGraphicsSystems()
void Initialize()
void export_G4VisManager()
void(PyG4VisManager::* f3_SetVerboseLevel)(G4VisManager::Verbosity)
static Verbosity GetVerbosity()
static PyG4VisManager * _get_concrete_instance()
const XML_Char int const XML_Char * value
G4bool RegisterGraphicsSystem(G4VGraphicsSystem *)