Geant4  10.02
XrayFluoMercuryDetectorMessenger.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 //
27 // $Id: XrayFluoMercuryDetectorMessenger.cc
28 // GEANT4 tag $Name:
29 //
30 // Author: Alfonso Mantero (Alfonso.Mantero@ge.infn.it)
31 //
32 // History:
33 // -----------
34 //
35 // 18 Sep 2003 Alfonso Mantero created
36 //
37 // -------------------------------------------------------------------
38 
39 
42 #include "G4UIdirectory.hh"
43 #include "G4UIcmdWithAString.hh"
46 #include "G4UIcmdWithABool.hh"
47 #include "G4RunManager.hh"
48 
49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
50 
52 :Detector(Det)
53 {
54  detDir = new G4UIdirectory("/apparate/");
55  detDir->SetGuidance("detector control.");
56 
57  UpdateCmd = new G4UIcmdWithoutParameter("/apparate/update",this);
58  UpdateCmd->SetGuidance("Update apparate geometry.");
59  UpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" ");
60  UpdateCmd->SetGuidance("if you changed geometrical value(s): /apparate/GrainDiameter and /apparate/sampleGranularity");
61 
63 
64  sampleCmd = new G4UIcmdWithAString("/apparate/mercuryMaterial",this);
65  sampleCmd->SetGuidance("select a diferent material for the mercury");
66  sampleCmd->SetParameterName("material",true);
67  sampleCmd->SetDefaultValue("mars1");
68  sampleCmd->SetCandidates("Dolorite Anorthosite Mars1 IceBasalt");
70 
71  detectorCmd = new G4UIcmdWithAString("/apparate/detector",this);
72  detectorCmd->SetGuidance("select a diferent detectorType");
73  detectorCmd->SetParameterName("detector",true);
75  detectorCmd->SetCandidates("sili hpge");
77 
78  latitudeAngleCmd = new G4UIcmdWithADoubleAndUnit( "/apparate/latitude",this );
79  latitudeAngleCmd->SetGuidance( "Set latitude angle of the spacecraft" );
80  latitudeAngleCmd->SetGuidance( "After this, /apparate/update must be executed before BeamOn" );
81  latitudeAngleCmd->SetGuidance( "Default: 45 deg " );
82  latitudeAngleCmd->SetParameterName( "Latitude Angle", true, true );
86 
87  orbitHeightCmd = new G4UIcmdWithADoubleAndUnit( "/apparate/orbitHeight",this );
88  orbitHeightCmd->SetGuidance( "Set height of the spacecraft above Mercuey Surface" );
89  orbitHeightCmd->SetGuidance( "After this, /apparate/update must be executed before BeamOn" );
90  orbitHeightCmd->SetGuidance( "Default: 400 km " );
91  orbitHeightCmd->SetParameterName( "Spacecraft Altitude", true, true );
93  orbitHeightCmd->SetUnitCategory( "Length" );
95 }
96 
97 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
98 
100 {
101  delete UpdateCmd;
102  delete detDir;
103 }
104 
105 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
106 
108 {
109  if( command == UpdateCmd )
110  {
111  //This triggers a full re-build of the geometry. The method in the
112  //geometry will take care of that.
114  return;
115  }
116  else if ( command == sampleCmd )
117  { Detector->SetMercuryMaterial(newValue);}
118 
119  else if ( command == detectorCmd )
120  { Detector->SetDetectorType(newValue);}
121 
122  else if ( command == latitudeAngleCmd )
123  {
124  G4double newAngle = latitudeAngleCmd->GetNewDoubleValue(newValue);
125  Detector->SetLatitude(newAngle);
126  }
127 
128  else if ( command == orbitHeightCmd )
129  {
130  G4double newAngle = orbitHeightCmd->GetNewDoubleValue(newValue);
131  Detector->SetOribitHeight(newAngle);
132  }
133  //Notify the run manager that the geometry has been modified
135 
136 }
137 
138 
139 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
140 
141 
142 
143 
144 
145 
146 
147 
148 
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void GeometryHasBeenModified(G4bool prop=true)
void SetUnitCategory(const char *unitCategory)
static G4double GetNewDoubleValue(const char *paramString)
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:239
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
void SetDefaultValue(const char *defVal)
void SetDefaultUnit(const char *defUnit)
XrayFluoMercuryDetectorConstruction * Detector
void SetCandidates(const char *candidateList)
double G4double
Definition: G4Types.hh:76
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
XrayFluoMercuryDetectorMessenger(XrayFluoMercuryDetectorConstruction *)