ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4OpenInventorXtExaminerViewerMessenger.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4OpenInventorXtExaminerViewerMessenger.cc
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 #ifdef G4VIS_BUILD_OIX_DRIVER
27 
30 
31 #include "G4SystemOfUnits.hh"
32 #include "G4UImanager.hh"
33 #include "G4UIcommand.hh"
34 #include "G4UIdirectory.hh"
35 #include "G4UIcmdWithAnInteger.hh"
36 
37 #include "G4VisManager.hh"
38 
39 // Static initializer
40 G4OpenInventorXtExaminerViewerMessenger*
41  G4OpenInventorXtExaminerViewerMessenger::fpInstance = 0;
42 
43 G4OpenInventorXtExaminerViewerMessenger*
45 {
46  if (!fpInstance) fpInstance = new G4OpenInventorXtExaminerViewerMessenger;
47  return fpInstance;
48 }
49 
50 // Constructor
51 G4OpenInventorXtExaminerViewerMessenger::
52  G4OpenInventorXtExaminerViewerMessenger()
53 {
54  G4bool omitable;
55 
56  fpDirectory = new G4UIdirectory("/vis/oixe/");
57  fpDirectory->SetGuidance("G4OpenInventorXtExaminerViewer commands.");
58 
59  fpCommandPathLookahead = new G4UIcmdWithAnInteger("/vis/oixe/pathLookahead", this);
60  fpCommandPathLookahead->SetGuidance("Look-ahead for flying along a path.");
61  fpCommandPathLookahead->SetParameterName("npoints", omitable = false);
62  fpCommandPathLookahead->SetRange("npoints > 0");
63 }
64 
65 G4OpenInventorXtExaminerViewerMessenger::
66  ~G4OpenInventorXtExaminerViewerMessenger()
67 {
68  delete fpCommandPathLookahead;
69  delete fpDirectory;
70 }
71 
72 void G4OpenInventorXtExaminerViewerMessenger::
73  SetNewValue(G4UIcommand* command, G4String newValue)
74 {
75  G4VisManager* pVisManager = G4VisManager::GetInstance();
76 
77  G4VViewer* pVViewer = pVisManager->GetCurrentViewer();
78 
79  if (!pVViewer) {
80  G4cout <<
81  "G4OpenInventorXtExaminerViewerMessenger::SetNewValue: "
82  "No current viewer." << G4endl <<
83  "Use /vis/open, or similar, to get one." << G4endl;
84  return;
85  }
86 
88  dynamic_cast<G4OpenInventorXtExaminerViewer*>(pVViewer);
89 
90  if (!pViewer) {
91  G4cout <<
92  "G4OpenInventorXtExaminerViewerMessenger::SetNewValue:" << G4endl <<
93  "Current viewer is not of type OIXE." << G4endl <<
94  "Use /vis/viewer/select or /vis/open." << G4endl;
95  return;
96  }
97 
98  if (command == fpCommandPathLookahead) {
99  G4int lookahead =
100  fpCommandPathLookahead->GetNewIntValue(newValue);
101  if (lookahead > 0) pViewer->pathLookahead = lookahead;
102  }
103 }
104 
105 #endif