Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ML2PhantomConstructionMessenger.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 // The code was written by :
27 // ^Claudio Andenna claudio.andenna@ispesl.it, claudio.andenna@iss.infn.it
28 // *Barbara Caccia barbara.caccia@iss.it
29 // with the support of Pablo Cirrone (LNS, INFN Catania Italy)
30 // with the contribute of Alessandro Occhigrossi*
31 //
32 // ^INAIL DIPIA - ex ISPESL and INFN Roma, gruppo collegato Sanità, Italy
33 // *Istituto Superiore di Sanità and INFN Roma, gruppo collegato Sanità, Italy
34 // Viale Regina Elena 299, 00161 Roma (Italy)
35 // tel (39) 06 49902246
36 // fax (39) 06 49387075
37 //
38 // more information:
39 // http://g4advancedexamples.lngs.infn.it/Examples/medical-linac
40 //
41 //*******************************************************//
42 
43 
46 
47 #include "G4UIcmdWithAString.hh"
48 #include "G4UIcmdWithAnInteger.hh"
51 
52 
53 CML2PhantomConstructionMessenger::CML2PhantomConstructionMessenger(CML2PhantomConstruction *phantomConstructor) : pPhantomConstructor (phantomConstructor)
54 {
55  PhantomName=new G4UIcmdWithAString("/phantom/PhantomName",this);
56  PhantomName->SetDefaultValue("fullWater");
57  PhantomName->SetGuidance("phantom name to select among those implemented fullWater, boxInBox, Dicom1");
58  pPhantomConstructor->setPhantomName("fullWater");
59 
60  PhantomFileName =new G4UIcmdWithAString("/phantom/PhantomFileName",this);
61  PhantomFileName ->SetDefaultValue("");
62  PhantomFileName->SetGuidance("full path and macro file name containing specific setup data for the phantom chosen");
63  pPhantomConstructor->setPhantomFileName ("");
64 
65  phantomCentre=new G4UIcmdWith3VectorAndUnit("/phantom/centre", this);
66  phantomCentre->SetDefaultUnit("mm");
67  phantomCentre->SetGuidance("phantom centre coordinates in the world [mm]");
68  phantomCentre->SetDefaultValue(G4ThreeVector(0.,0.,0.));
69 }
70 
72 {
73  delete PhantomName;
74  delete phantomCentre;
75 }
77 {
78  if (cmd==PhantomName)
79  {pPhantomConstructor->setPhantomName(newValue);}
80 
81  if (cmd==PhantomFileName )
82  {pPhantomConstructor->setPhantomFileName (newValue);}
83 
84  if (cmd==phantomCentre )
85  {
86  if (bOnlyVisio)
87  {
88  pPhantomConstructor->applyNewCentre(phantomCentre->GetNew3VectorRawValue(newValue));
89 // what follows seems to be necessary to have a good refresh
91  G4String command;
92  command = "/run/beamOn 0";
93  UI->ApplyCommand(command);
94  command = "/vis/viewer/flush";
95  UI->ApplyCommand(command);
96  }
97  else
98  {
99  pPhantomConstructor->addNewCentre(phantomCentre->GetNew3VectorRawValue(newValue));
100  }
101  }
102 }
103 
char cmd[1024]
Definition: tracer.cxx:25
CLHEP::Hep3Vector G4ThreeVector
void SetDefaultUnit(const char *defUnit)
void SetNewValue(G4UIcommand *cmd, G4String newValue)
CML2PhantomConstructionMessenger(CML2PhantomConstruction *phantomConstructor)
void setPhantomFileName(G4String val)
void addNewCentre(G4ThreeVector val)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void SetDefaultValue(G4ThreeVector defVal)
void SetDefaultValue(const char *defVal)
void setPhantomName(G4String val)
static G4ThreeVector GetNew3VectorRawValue(const char *paramString)
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
void applyNewCentre(G4ThreeVector val)