Import Geant4 6.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:56:29 +02:00
parent 1d812b78b1
commit e083ffb441
1415 changed files with 111223 additions and 21207 deletions
@@ -0,0 +1,99 @@
//
// ********************************************************************
// * DISCLAIMER *
// * *
// * The following disclaimer summarizes all the specific disclaimers *
// * of contributors to this software. The specific disclaimers,which *
// * govern, are listed with their locations in: *
// * http://cern.ch/geant4/license *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. *
// * *
// * This code implementation is the intellectual property of the *
// * GEANT4 collaboration. *
// * By copying, distributing or modifying the Program (or any work *
// * based on the Program) you indicate your acceptance of this *
// * statement, and all its terms. *
// ********************************************************************
//
// $Id: HadrontherapyRunAction.cc,v 1.0
// --------------------------------------------------------------
// GEANT 4 - Hadrontherapy example
// --------------------------------------------------------------
// Code developed by:
//
// G.A.P. Cirrone, G. Russo
// Laboratori Nazionali del Sud - INFN, Catania, Italy
//
// --------------------------------------------------------------
#include "HadrontherapyRunAction.hh"
#include "G4Run.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4VVisManager.hh"
#include "G4ios.hh"
#include <iomanip.h>
#include "Randomize.hh"
// ---------------------------------------------------------------
HadrontherapyRunAction::HadrontherapyRunAction()
:NbOfLayer(20000)
{
}
// ---------------------------------------------------------------
HadrontherapyRunAction::~HadrontherapyRunAction()
{
}
// ---------------------------------------------------------------
void HadrontherapyRunAction::BeginOfRunAction(const G4Run* aRun)
{
for (G4int i=0; i < 50000; i++)
{
energy[i] = 0.0;
};
G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl;
// save Rndm status
G4RunManager::GetRunManager() -> SetRandomNumberStore(true);
HepRandom::showEngineStatus();
}
// ---------------------------------------------------------------------
void HadrontherapyRunAction::EndOfRunAction(const G4Run*)
{
// WRITE ASCII FILE FOR THE REGISTRATION OF THE BRAGG PEAK
// The a two column file (piccoXX.dat) is registered. The first column represents
// the ionization chamber position (in mm of water); the second
// is the energy deposited for each position of the chamber
for (G4int i = 0; i < 20000; i++) {
G4double depth = 0;
depth = i*0.002; //the number represents the thickness of the ionization chamber (in mm ofwater)
std::ofstream pmtfile("BraggPeak.out", std::ios::app);
if(pmtfile.is_open())
{
pmtfile << depth << '\t' << energy[i] << '\t' << G4endl;
}
}
// show Rndm status
HepRandom::showEngineStatus();
}
// -----------------------------------------------------------------------------
void HadrontherapyRunAction::EnergyTotSlice(G4int slice, G4double energy_dep)
{
energy[ slice ] = energy [ slice ] + energy_dep;
}