Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/extended/medical/radiobiology/radiobiology.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 //
 27 // D Chiappara, GAP Cirrone, G Petringa
 28 //
 29 // ** RADIOBIO  example **
 30 // make easy the calculation of the main radiobiology quantities used in
 31 // charged particles radiation therapy: depth dose, Fluence in depth,
 32 // LET (Linear Energy Transfer) and RBE (Relative Bioology Effectiveness)
 33 //
 34 
 35 #include "G4PhysListFactory.hh"
 36 #include "G4RunManagerFactory.hh"
 37 #include "G4ScoringManager.hh"
 38 #include "G4Timer.hh"
 39 #include "G4UImanager.hh"
 40 #include "G4UImessenger.hh"
 41 #include "G4VModularPhysicsList.hh"
 42 #include "Randomize.hh"
 43 #include "globals.hh"
 44 
 45 #include "ActionInitialization.hh"
 46 #include "DetectorConstruction.hh"
 47 #include "Dose.hh"
 48 #include "LET.hh"
 49 #include "Manager.hh"
 50 #include "PhysicsList.hh"
 51 #include "PrimaryGeneratorAction.hh"
 52 #include "RBE.hh"
 53 #include <time.h>
 54 
 55 // #ifdef G4VIS_USE
 56 #include "G4VisExecutive.hh"
 57 // #endif
 58 
 59 // #ifdef G4UI_USE
 60 #include "G4UIExecutive.hh"
 61 // #endif
 62 
 63 using namespace RadioBio;
 64 
 65 ////////////////////////////////////////////////////////////////////////////////
 66 int main(int argc, char** argv)
 67 {
 68   G4UIExecutive* ui = nullptr;
 69   if (argc == 1) {
 70     ui = new G4UIExecutive(argc, argv);
 71   }
 72 
 73   // Instantiate the G4Timer object, to monitor the CPU time spent for
 74   // the entire execution
 75   G4Timer* theTimer = new G4Timer();
 76   // Start the benchmark
 77   theTimer->Start();
 78 
 79   // Set the Random engine
 80   // The following guarantees random generation also for different runs
 81   // in multithread
 82   CLHEP::RanluxEngine defaultEngine(1234567, 4);
 83   G4Random::setTheEngine(&defaultEngine);
 84   G4int seed = time(NULL);
 85   G4Random::setTheSeed(seed);
 86 
 87   // Create the run manager. Uses by default serial or parallel computation.
 88   auto* runManager = G4RunManagerFactory::CreateRunManager(G4RunManagerType::Default);
 89 
 90   // Create Scoring manager
 91   G4ScoringManager* scoringManager = G4ScoringManager::GetScoringManager();
 92   scoringManager->SetVerboseLevel(1);
 93 
 94   // Creating PhysicsList
 95   G4VModularPhysicsList* phys = new PhysicsList();
 96 
 97   // Set mandatory initialization classes
 98   DetectorConstruction* det = new DetectorConstruction();
 99   runManager->SetUserInitialization(det);
100 
101   // Creation of Manager
102   Manager* RBman = Manager::CreateInstance();
103 
104   // Create and Register Radiobiological quantities
105   Dose* dose = new Dose();
106   RBman->Register(dose, "Dose");
107 
108   LET* let = new LET();
109   RBman->Register(let, "LET");
110 
111   RBE* rbe = new RBE();
112   RBman->Register(rbe, "RBE");
113 
114   // Initialisation of physics
115   runManager->SetUserInitialization(phys);
116 
117   // Initialisation of the Actions
118   runManager->SetUserInitialization(new ActionInitialization(det));
119 
120   // Initialize command based scoring
121   G4ScoringManager::GetScoringManager();
122 
123   // Initialise the Visualisation
124   // #ifdef G4VIS_USE
125   G4VisManager* visManager = new G4VisExecutive;
126   visManager->Initialize();
127   // #endif
128 
129   //** Get the pointer to the User Interface manager
130   G4UImanager* UImanager = G4UImanager::GetUIpointer();
131 
132   if (!ui) {
133     // batch mode
134     G4String command = "/control/execute ";
135     G4String fileName = argv[1];
136     UImanager->ApplyCommand(command + fileName);
137   }
138 
139   else {
140     // UImanager -> ApplyCommand("/control/execute macro/MacroPablo.mac");
141     UImanager->ApplyCommand("/control/execute macro/visualize.mac");
142 
143     ui->SessionStart();
144     delete ui;
145   }
146 
147   // Save data in RadioBioManager
148   RBman->StoreAll();
149 
150   // Stop the benchmark here
151   theTimer->Stop();
152 
153   G4cout << "The simulation took: " << theTimer->GetRealElapsed() << " s to run (real time)"
154          << G4endl;
155 
156   delete theTimer;
157   delete runManager;
158 }
159