Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/advanced/gorad/src/GRGeomBiasMessenger.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  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 //  Gorad (Geant4 Open-source Radiation Analysis and Design)
 27 //
 28 //  Author : Makoto Asai (SLAC National Accelerator Laboratory)
 29 //
 30 //  Development of Gorad is funded by NASA Johnson Space Center (JSC)
 31 //  under the contract NNJ15HK11B.
 32 //
 33 // ********************************************************************
 34 //
 35 // GRGeomBiasMessenger.cc
 36 //   A messenger class that handles the UI commands for geometry
 37 //   imprtance biasing.
 38 //
 39 // History
 40 //   September 8th, 2020 : first implementation
 41 //
 42 // ********************************************************************
 43 
 44 #include "GRGeomBiasMessenger.hh"
 45 
 46 #include "GRDetectorConstruction.hh"
 47 #include "GRPhysicsList.hh"
 48 #include "G4UIdirectory.hh"
 49 #include "G4UIcommand.hh"
 50 #include "G4UIcmdWith3VectorAndUnit.hh"
 51 #include "G4UIcmdWithADoubleAndUnit.hh"
 52 #include "G4UIcmdWithAnInteger.hh"
 53 #include "G4UIcmdWithADouble.hh"
 54 #include "G4UIparameter.hh"
 55 #include "G4Tokenizer.hh"
 56 #include "G4UnitsTable.hh"
 57 
 58 GRGeomBiasMessenger::GRGeomBiasMessenger(
 59   GRDetectorConstruction* det,GRPhysicsList* phys,G4int verboseLvl)
 60 : detector(det),physics(phys),verboseLevel(verboseLvl)
 61 {
 62   G4UIparameter* param = nullptr;
 63 
 64   biasDir = new G4UIdirectory("/gorad/bias/");
 65   biasDir->SetGuidance("Gorad biasing commands");
 66 
 67   geoBiasCmd = new G4UIcommand("/gorad/bias/geomImportance",this);
 68   geoBiasCmd->SetGuidance("Geometry importance biasing");
 69   geoBiasCmd->SetGuidance("This command defines the number of layers and radius of the outermost sphere for geometry importance biasing.");
 70   geoBiasCmd->SetGuidance("If radius is set to -1 (default), actual radius is set to 80% of the world volume");
 71   geoBiasCmd->SetGuidance("Note: There must be at least two layers.");
 72   param = new G4UIparameter("nLayer",'i',false);
 73   param->SetParameterRange("nLayer > 1");
 74   geoBiasCmd->SetParameter(param);
 75   param = new G4UIparameter("radius",'d',true);
 76   param->SetParameterRange("radius == -1.0 || radius > 0.");
 77   param->SetDefaultValue(-1.0);
 78   geoBiasCmd->SetParameter(param);
 79   param = new G4UIparameter("unit",'s',true);
 80   param->SetDefaultUnit("mm");
 81   geoBiasCmd->SetParameter(param);
 82   geoBiasCmd->SetToBeBroadcasted(false);
 83   geoBiasCmd->AvailableForStates(G4State_PreInit);
 84 
 85   geoBiasLocCmd = new G4UIcmdWith3VectorAndUnit("/gorad/bias/geomImpLocate",this);
 86   geoBiasLocCmd->SetGuidance("Position of the center of the outermost sphere.");
 87   geoBiasLocCmd->SetGuidance("By default, the sphere is located at the origin of the world volume.");
 88   geoBiasLocCmd->SetGuidance("This command has to follow /gorad/bias/geomImportance command.");
 89   geoBiasLocCmd->SetParameterName("x0","y0","z0",false);
 90   geoBiasLocCmd->SetDefaultUnit("mm");
 91   geoBiasLocCmd->SetToBeBroadcasted(false);
 92   geoBiasLocCmd->AvailableForStates(G4State_PreInit);
 93   
 94   geoBiasInRadCmd = new G4UIcmdWithADoubleAndUnit("/gorad/bias/geomImpInnerRadius",this);
 95   geoBiasInRadCmd->SetGuidance("Radius of the innermost sphere.");
 96   geoBiasInRadCmd->SetGuidance("By default it is defined as 1/n of radius of the outermost sphere.");
 97   geoBiasInRadCmd->SetParameterName("rT",false);
 98   geoBiasInRadCmd->SetDefaultUnit("mm");
 99   geoBiasInRadCmd->SetRange("rT > 0.");
100   geoBiasInRadCmd->SetToBeBroadcasted(false);
101   geoBiasInRadCmd->AvailableForStates(G4State_PreInit);
102   
103   geoBiasLocTgtCmd = new G4UIcmdWith3VectorAndUnit("/gorad/bias/geomImpLocTgt",this);
104   geoBiasLocTgtCmd->SetGuidance("Position of the center of the innermost sphere.");
105   geoBiasLocTgtCmd->SetGuidance("By default, it is located at the center of the outermost sphere.");
106   geoBiasLocTgtCmd->SetGuidance("This command has to follow /gorad/bias/geomImportance command.");
107   geoBiasLocTgtCmd->SetGuidance("Note: distance between (x0,y,0,z0) and (xT,yT,zT) must be smaller than r0*(nLayer-1)/nLayer.");
108   geoBiasLocTgtCmd->SetGuidance("          (smaller than r0-rT if radius of innermost sphere is set)");
109   geoBiasLocTgtCmd->SetParameterName("xT","yT","zT",false);
110   geoBiasLocTgtCmd->SetDefaultUnit("mm");
111   geoBiasLocTgtCmd->SetToBeBroadcasted(false);
112   geoBiasLocTgtCmd->AvailableForStates(G4State_PreInit);
113 
114   geoBiasFucCmd = new G4UIcmdWithAnInteger("/gorad/bias/geomImpFactor",this);
115   geoBiasFucCmd->SetGuidance("Alternate the geometry importance biasing factor.");
116   geoBiasFucCmd->SetGuidance("By default the factor is set to 2. We do not recommend the factor to be much larger than 2.");
117   geoBiasFucCmd->SetGuidance("This command has to follow /gorad/bias/geomImportance command.");
118   geoBiasFucCmd->SetParameterName("factor",false);
119   geoBiasFucCmd->SetDefaultValue(2);
120   geoBiasFucCmd->SetRange("factor > 0");
121   geoBiasFucCmd->SetToBeBroadcasted(false);
122   geoBiasFucCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
123 
124   geoBiasProbCmd = new G4UIcmdWithADouble("/gorad/bias/geomImpProbability",this);
125   geoBiasProbCmd->SetGuidance("Reduce the probability of geometry importance biasing to avoid over biasing.");
126   geoBiasProbCmd->SetGuidance("By default the probability is set to 1.0 (i.e. 100%).");
127   geoBiasProbCmd->SetGuidance("This command has to follow /gorad/bias/geomImportance command.");
128   geoBiasProbCmd->SetParameterName("prob",true);
129   geoBiasProbCmd->SetDefaultValue(1.);
130   geoBiasProbCmd->SetRange("prob > 0. && prob <= 1.0");
131   geoBiasProbCmd->SetToBeBroadcasted(false);
132   geoBiasProbCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
133 
134   if(verboseLevel>0) 
135   { G4cout << "UI commands /gorad/bias/ instantiated." << G4endl; }
136 }
137 
138 GRGeomBiasMessenger::~GRGeomBiasMessenger()
139 {
140   delete geoBiasProbCmd;
141   delete geoBiasFucCmd;
142   delete geoBiasLocTgtCmd;
143   delete geoBiasInRadCmd;
144   delete geoBiasLocCmd;
145   delete geoBiasCmd;
146   delete biasDir;
147 }
148 
149 void GRGeomBiasMessenger::SetNewValue(G4UIcommand * command,G4String newVal)
150 {
151   if(command==geoBiasCmd)
152   {
153     G4Tokenizer next(newVal);
154     G4int nL = StoI(next());
155     G4String r = next() + " ";
156     r += next();
157     detector->GeomImp(nL,geoBiasCmd->ConvertToDimensionedDouble(r));
158     physics->ApplyGeomImpBias();
159   }
160   else
161   { // following commands have to come after /gorad/bias/geomImportance command.
162     G4bool applyGeomImpBias = detector->ApplyGeomImpBias();
163     if(!applyGeomImpBias)
164     {
165       G4ExceptionDescription ed;
166       ed << "This command has to follow /gorad/bias/geomImportance command. Command failed.";
167       command->CommandFailed(ed);
168     }
169     else if(command==geoBiasLocCmd)
170     {
171       detector->GeomImpLocate(geoBiasLocCmd->GetNew3VectorValue(newVal));
172     }
173     else if(command==geoBiasInRadCmd)
174     {
175       G4double rt = detector->GeomImpInnerRadius(geoBiasInRadCmd->GetNewDoubleValue(newVal));
176       if(rt<0.)
177       {
178         G4ExceptionDescription ed;
179         ed << "Specified radius is too large. It has to be smaller than the outermost sphere "
180            << -rt << " (mm)\n" << "command failed.";
181         command->CommandFailed(ed);
182       }
183     }
184     else if(command==geoBiasLocTgtCmd)
185     {
186       G4double dr = detector->GeomImpLocateTgt(geoBiasLocTgtCmd->GetNew3VectorValue(newVal));
187       if(dr>0.)
188       {
189         G4ExceptionDescription ed;
190         ed << "Distance between (x0,y,0,z0) and (xT,yT,zT) must be smaller than radius*(nLayer-1)/nLayer, "
191            << dr << " (mm)\n" << "command failed."; 
192         command->CommandFailed(ed);
193       }
194     }
195     else if(command==geoBiasFucCmd)
196     {
197       detector->GeomImpFactor(StoI(newVal));
198     }
199     else if(command==geoBiasProbCmd)
200     {
201       detector->GeomImpProb(StoD(newVal));
202     }
203   }
204 }
205 
206 G4String GRGeomBiasMessenger::GetCurrentValue(G4UIcommand* /*command*/)
207 {
208   G4String val;
209   return val;
210 }
211