Geant4.10
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4.10.00.p01
examples
advanced
dnaphysics
src
examples/advanced/dnaphysics/src/DetectorMessenger.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
// This example is provided by the Geant4-DNA collaboration
27
// Any report or published results obtained using the Geant4-DNA software
28
// shall cite the following Geant4-DNA collaboration publication:
29
// Med. Phys. 37 (2010) 4692-4708
30
// The Geant4-DNA web site is available at http://geant4-dna.org
31
//
32
33
#include "DetectorMessenger.hh"
34
35
#include "DetectorConstruction.hh"
36
#include "
G4UIdirectory.hh
"
37
#include "
G4UIcommand.hh
"
38
#include "
G4UIparameter.hh
"
39
#include "
G4UIcmdWithAString.hh
"
40
#include "
G4UIcmdWithoutParameter.hh
"
41
42
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43
44
DetectorMessenger::DetectorMessenger
(
DetectorConstruction
* Det)
45
:fDetector(Det)
46
{
47
fMaterCmd =
new
G4UIcmdWithAString
(
"/dna/det/setMat"
,
this
);
48
fMaterCmd->
SetGuidance
(
"Select material of the world."
);
49
fMaterCmd->
SetParameterName
(
"choice"
,
false
);
50
fMaterCmd->
AvailableForStates
(
G4State_PreInit
,
G4State_Idle
);
51
52
fUpdateCmd =
new
G4UIcmdWithoutParameter
(
"/dna/det/update"
,
this
);
53
fUpdateCmd->
SetGuidance
(
"Update geometry."
);
54
fUpdateCmd->
SetGuidance
(
"This command MUST be applied before \"beamOn\" "
);
55
fUpdateCmd->
SetGuidance
(
"if you changed geometrical value(s)."
);
56
fUpdateCmd->
AvailableForStates
(
G4State_Idle
);
57
}
58
59
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
60
61
DetectorMessenger::~DetectorMessenger
()
62
{
63
delete
fMaterCmd;
64
delete
fUpdateCmd;
65
}
66
67
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69
void
DetectorMessenger::SetNewValue
(
G4UIcommand
* command,
G4String
newValue)
70
{
71
if
( command == fMaterCmd )
72
{ fDetector->
SetMaterial
(newValue);}
73
74
if
( command == fUpdateCmd )
75
{ fDetector->
UpdateGeometry
();}
76
}
77
78
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4UIcmdWithAString::SetParameterName
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
Definition:
G4UIcmdWithAString.cc:42
DetectorMessenger::~DetectorMessenger
~DetectorMessenger()
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/DetectorMessenger.cc:56
G4UIdirectory.hh
DetectorMessenger::SetNewValue
void SetNewValue(G4UIcommand *, G4String)
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/DetectorMessenger.cc:65
G4UIcmdWithAString.hh
G4UIcommand
Definition:
G4UIcommand.hh:51
G4UIcommand.hh
G4UIparameter.hh
G4UIcommand::SetGuidance
void SetGuidance(const char *aGuidance)
Definition:
G4UIcommand.hh:161
G4UIcommand::AvailableForStates
void AvailableForStates(G4ApplicationState s1)
Definition:
G4UIcommand.cc:225
G4UIcmdWithoutParameter
Definition:
G4UIcmdWithoutParameter.hh:41
G4UIcmdWithAString
Definition:
G4UIcmdWithAString.hh:42
DetectorConstruction::UpdateGeometry
void UpdateGeometry()
Definition:
examples/advanced/amsEcal/src/DetectorConstruction.cc:409
G4State_Idle
Definition:
G4ApplicationState.hh:85
DetectorMessenger::DetectorMessenger
DetectorMessenger(DetectorConstruction *)
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/DetectorMessenger.cc:39
DetectorConstruction
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/DetectorConstruction.hh:46
G4UIcmdWithoutParameter.hh
G4State_PreInit
Definition:
G4ApplicationState.hh:85
DetectorConstruction::SetMaterial
void SetMaterial(G4String)
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/DetectorConstruction.cc:183
G4String
Definition:
examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4String.hh:45
Generated on Wed Apr 30 2014 15:54:29 for Geant4.10 by
1.8.7