Files
geant4/examples/extended/medical/dna/wvalue/src/Run.cc
T
2017-06-30 10:49:55 +02:00

257 lines
8.3 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * 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. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
/// \file medical/dna/wvalue/src/Run.cc
/// \brief Implementation of the Run class
#include "Run.hh"
#include "DetectorConstruction.hh"
#include "HistoManager.hh"
#include "PrimaryGeneratorAction.hh"
#include "G4Material.hh"
#include "G4SystemOfUnits.hh"
#include "G4UnitsTable.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Run::Run(const DetectorConstruction* detector)
: G4Run(),
fDetector(detector),
fParticle(0), fEkin(0.),
fNbInelastic(0), fNbInelastic2(0),
fEdeposit(0.), fEdeposit2(0.),
fTrackLen(0.), fTrackLen2(0.),
fProjRange(0.), fProjRange2(0.),
fNbOfSteps(0), fNbOfSteps2(0),
fStepSize(0.), fStepSize2(0.)
{ }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Run::~Run()
{ }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::SetPrimary (G4ParticleDefinition* particle, G4double energy)
{
fParticle = particle;
fEkin = energy;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::AddInelastic (G4int nb)
{
fNbInelastic += nb;
fNbInelastic2 += nb*nb;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::AddEdep (G4double e)
{
fEdeposit += e;
fEdeposit2 += e*e;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::AddTrackLength (G4double t)
{
fTrackLen += t;
fTrackLen2 += t*t;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::AddProjRange (G4double x)
{
fProjRange += x;
fProjRange2 += x*x;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::AddStepSize (G4int nb, G4double st)
{
fNbOfSteps += nb;
fNbOfSteps2 += nb*nb;
fStepSize += st ;
fStepSize2 += st*st;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::Merge(const G4Run* run)
{
const Run* localRun = static_cast<const Run*>(run);
// pass information about primary particle
fParticle = localRun->fParticle;
fEkin = localRun->fEkin;
// accumulate sums
fNbInelastic += localRun->fNbInelastic;
fNbInelastic2 += localRun->fNbInelastic2;
fEdeposit += localRun->fEdeposit;
fEdeposit2 += localRun->fEdeposit2;
fTrackLen += localRun->fTrackLen;
fTrackLen2 += localRun->fTrackLen2;
fProjRange += localRun->fProjRange;
fProjRange2 += localRun->fProjRange2;
fNbOfSteps += localRun->fNbOfSteps ;
fNbOfSteps2 += localRun->fNbOfSteps2;
fStepSize += localRun->fStepSize;
fStepSize2 += localRun->fStepSize2;
G4Run::Merge(run);
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void Run::EndOfRun()
{
std::ios::fmtflags mode = G4cout.flags();
G4cout.setf(std::ios::fixed,std::ios::floatfield);
G4int prec = G4cout.precision(2);
//run conditions
//
G4Material* material = fDetector->GetAbsorMaterial();
G4double density = material->GetDensity();
G4String partName = fParticle->GetParticleName();
G4cout << "\n ======================== run summary =====================\n";
G4cout
<< "\n The run is " << numberOfEvent << " "<< partName << " of "
<< G4BestUnit(fEkin,"Energy") << " through a sphere of radius "
<< G4BestUnit(fDetector->GetAbsorRadius(),"Length") << "of "
<< material->GetName() << " (density: "
<< G4BestUnit(density,"Volumic Mass") << ")" << G4endl;
if (numberOfEvent == 0) {
G4cout.setf(mode,std::ios::floatfield);
G4cout.precision(prec);
return;
}
fNbInelastic /= numberOfEvent; fNbInelastic2 /= numberOfEvent;
G4double rms = fNbInelastic2 - fNbInelastic*fNbInelastic;
if (rms>0.) rms = std::sqrt(rms); else rms = 0.;
G4cout.precision(3);
G4cout
<< "\n Nb of ionisations = " << fNbInelastic
<< " +- " << rms
<< G4endl;
G4cout.precision(3);
G4cout
<< "\n w = " << G4BestUnit((fEkin)/fNbInelastic,"Energy")
<< " +- " << G4BestUnit((fEkin)*rms/(fNbInelastic*fNbInelastic),"Energy")
<< G4endl;
//output file
if(fNbInelastic>0.)
{
FILE *myFile;
myFile = fopen ("wvalue.txt","a");
fprintf (myFile, "%e %e %e %e %e \n", fEkin/eV, fNbInelastic, rms,
fEkin/eV/fNbInelastic, (fEkin/eV)*rms/(fNbInelastic*fNbInelastic) );
fclose (myFile);
}
//
fEdeposit /= numberOfEvent; fEdeposit2 /= numberOfEvent;
rms = fEdeposit2 - fEdeposit*fEdeposit;
if (rms>0.) rms = std::sqrt(rms); else rms = 0.;
G4cout.precision(3);
G4cout
<< "\n Total Energy deposited = " << G4BestUnit(fEdeposit,"Energy")
<< " +- " << G4BestUnit( rms,"Energy")
<< G4endl;
//compute track length of primary track
//
fTrackLen /= numberOfEvent; fTrackLen2 /= numberOfEvent;
rms = fTrackLen2 - fTrackLen*fTrackLen;
if (rms>0.) rms = std::sqrt(rms); else rms = 0.;
G4cout.precision(3);
G4cout
<< "\n Track length of primary track = " << G4BestUnit(fTrackLen,"Length")
<< " +- " << G4BestUnit( rms,"Length");
//compute projected range of primary track
//
fProjRange /= numberOfEvent; fProjRange2 /= numberOfEvent;
rms = fProjRange2 - fProjRange*fProjRange;
if (rms>0.) rms = std::sqrt(rms); else rms = 0.;
G4cout
<< "\n Projected range = " << G4BestUnit(fProjRange,"Length")
<< " +- " << G4BestUnit( rms,"Length")
<< G4endl;
//nb of steps and step size of primary track
//
G4double dNofEvents = double(numberOfEvent);
G4double fNbSteps = fNbOfSteps/dNofEvents,
fNbSteps2 = fNbOfSteps2/dNofEvents;
rms = fNbSteps2 - fNbSteps*fNbSteps;
if (rms>0.) rms = std::sqrt(rms); else rms = 0.;
G4cout.precision(2);
G4cout << "\n Nb of steps of primary track = " << fNbSteps << " +- " << rms
<< G4endl;
fStepSize /= numberOfEvent; fStepSize2 /= numberOfEvent;
rms = fStepSize2 - fStepSize*fStepSize;
if (rms>0.) rms = std::sqrt(rms); else rms = 0.;
G4cout.precision(3);
G4cout
<< "\n Step size = " << G4BestUnit(fStepSize,"Length")
<< " +- " << G4BestUnit( rms,"Length")
<< G4endl;
// normalize histograms of longitudinal energy profile
//
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
G4int ih = 1;
G4double binWidth = analysisManager->GetH1Width(ih);
G4double fac = (1./(numberOfEvent*binWidth))*(mm/MeV);
analysisManager->ScaleH1(ih,fac);
// reset default formats
G4cout.setf(mode,std::ios::floatfield);
G4cout.precision(prec);
}