Import Geant4 8.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 14:55:03 +02:00
parent 216a75eeb1
commit fe73f43734
6714 changed files with 118229 additions and 68144 deletions
@@ -25,7 +25,7 @@
//
//
// $Id: ExN07DetectorConstruction.cc,v 1.7 2006/06/29 17:54:55 gunter Exp $
// GEANT4 tag $Name: geant4-08-01 $
// GEANT4 tag $Name: geant4-08-02 $
//
//
@@ -25,7 +25,7 @@
//
//
// $Id: ExN07DetectorMessenger.cc,v 1.6 2006/06/29 17:54:57 gunter Exp $
// GEANT4 tag $Name: geant4-08-01 $
// GEANT4 tag $Name: geant4-08-02 $
//
#include "ExN07DetectorMessenger.hh"
+1 -1
View File
@@ -25,7 +25,7 @@
//
//
// $Id: ExN07PhysicsList.cc,v 1.6 2006/06/29 17:54:59 gunter Exp $
// GEANT4 tag $Name: geant4-08-01 $
// GEANT4 tag $Name: geant4-08-02 $
//
#include "ExN07PhysicsList.hh"
@@ -25,7 +25,7 @@
//
//
// $Id: ExN07PrimaryGeneratorAction.cc,v 1.3 2006/06/29 17:55:01 gunter Exp $
// GEANT4 tag $Name: geant4-08-01 $
// GEANT4 tag $Name: geant4-08-02 $
//
#include "ExN07PrimaryGeneratorAction.hh"
+1 -1
View File
@@ -25,7 +25,7 @@
//
//
// $Id: ExN07Run.cc,v 1.5 2006/06/29 17:55:04 gunter Exp $
// GEANT4 tag $Name: geant4-08-01 $
// GEANT4 tag $Name: geant4-08-02 $
//
#include "ExN07Run.hh"
+13 -2
View File
@@ -24,8 +24,8 @@
// ********************************************************************
//
//
// $Id: ExN07RunAction.cc,v 1.5 2006/06/29 17:55:07 gunter Exp $
// GEANT4 tag $Name: geant4-08-01 $
// $Id: ExN07RunAction.cc,v 1.6 2006/11/04 19:23:07 asaim Exp $
// GEANT4 tag $Name: geant4-08-02 $
//
#include "ExN07RunAction.hh"
@@ -37,6 +37,9 @@
#include "G4ios.hh"
#include "G4UnitsTable.hh"
#include "G4VSteppingVerbose.hh"
#include "ExN07SteppingVerbose.hh"
ExN07RunAction::ExN07RunAction()
{;}
@@ -46,6 +49,12 @@ ExN07RunAction::~ExN07RunAction()
G4Run* ExN07RunAction::GenerateRun()
{ return new ExN07Run; }
void ExN07RunAction::BeginOfRunAction(const G4Run*)
{
ExN07SteppingVerbose* sv = (ExN07SteppingVerbose*)(G4VSteppingVerbose::GetInstance());
sv->InitializeTimers();
}
void ExN07RunAction::EndOfRunAction(const G4Run* aRun)
{
static G4String regName[3] = {"Calor-A","Calor-B","Calor-C"};
@@ -106,5 +115,7 @@ void ExN07RunAction::EndOfRunAction(const G4Run* aRun)
G4cout
<< "############################################################" << G4endl;
}
ExN07SteppingVerbose* sv = (ExN07SteppingVerbose*)(G4VSteppingVerbose::GetInstance());
sv->Report();
}
@@ -0,0 +1,150 @@
//
// ********************************************************************
// * 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. *
// ********************************************************************
//
//
// $Id: ExN07SteppingVerbose.cc,v 1.1 2006/11/04 19:23:07 asaim Exp $
// GEANT4 tag $Name: geant4-08-02 $
//
#include "ExN07SteppingVerbose.hh"
#include "G4SteppingManager.hh"
#include "G4UnitsTable.hh"
#include "G4RegionStore.hh"
#include "G4Region.hh"
#include "G4Electron.hh"
#include "G4Positron.hh"
#include "G4RunManagerKernel.hh"
#include "G4TrackingManager.hh"
ExN07SteppingVerbose::ExN07SteppingVerbose()
: nTimers(0),regIdx(-1),ep(false)
{}
ExN07SteppingVerbose::~ExN07SteppingVerbose()
{
for(G4int j=0;j<nTimers;j++)
{ delete fTimers[j]; }
fTimers.clear();
}
void ExN07SteppingVerbose::InitializeTimers()
{
G4RegionStore* regionStore = G4RegionStore::GetInstance();
nRegions = regionStore->size();
nTimers = 2 * nRegions;
G4int nEnt = fTimers.size();
if(nEnt<nTimers)
{
for(G4int i=nEnt;i<nTimers;i++)
{ fTimers.push_back(new G4SliceTimer); }
}
for(G4int j=0;j<nTimers;j++)
{ fTimers[j]->Clear(); }
regIdx = -1;
ep = false;
// Set verbosity for timing
G4RunManagerKernel::GetRunManagerKernel()->GetTrackingManager()->SetVerboseLevel(0);
fManager->SetVerboseLevel(1);
}
void ExN07SteppingVerbose::Report()
{
for(G4int i=0;i<nRegions;i++)
{
G4cout << G4endl;
G4cout << "Region <" << (*G4RegionStore::GetInstance())[i]->GetName() << ">" << G4endl;
G4cout << " All particles : User=" << fTimers[i]->GetUserElapsed()
<< " Real=" << fTimers[i]->GetRealElapsed()
<< " Sys=" << fTimers[i]->GetSystemElapsed() << G4endl;
G4cout << " e+ / e- : User=" << fTimers[nRegions+i]->GetUserElapsed()
<< " Real=" << fTimers[nRegions+i]->GetRealElapsed()
<< " Sys=" << fTimers[nRegions+i]->GetSystemElapsed() << G4endl;
}
G4cout << G4endl;
}
void ExN07SteppingVerbose::NewStep()
{
CopyState();
G4Region* reg = fTrack->GetStep()->GetPreStepPoint()->GetPhysicalVolume()->GetLogicalVolume()->GetRegion();
regIdx = FindRegion(reg);
fTimers[regIdx]->Start();
G4ParticleDefinition* pd = fTrack->GetDefinition();
if(pd==G4Electron::ElectronDefinition() || pd==G4Positron::PositronDefinition()) ep = true;
if(ep) fTimers[nRegions+regIdx]->Start();
}
void ExN07SteppingVerbose::StepInfo()
{
fTimers[regIdx]->Stop();
if(ep)
{
fTimers[nRegions+regIdx]->Stop();
ep = false;
}
regIdx = -1;
}
G4int ExN07SteppingVerbose::FindRegion(G4Region* rgn)
{
G4RegionStore* regionStore = G4RegionStore::GetInstance();
G4int sz = regionStore->size();
for(G4int i=0;i<sz;i++)
{ if(rgn==(*regionStore)[i]) return i; }
return -1;
}
// Empty methods not to be used.
void ExN07SteppingVerbose::TrackBanner()
{;}
void ExN07SteppingVerbose::AtRestDoItInvoked()
{;}
void ExN07SteppingVerbose::AlongStepDoItAllDone()
{;}
void ExN07SteppingVerbose::PostStepDoItAllDone()
{;}
void ExN07SteppingVerbose::AlongStepDoItOneByOne()
{;}
void ExN07SteppingVerbose::PostStepDoItOneByOne()
{;}
void ExN07SteppingVerbose::TrackingStarted()
{;}
void ExN07SteppingVerbose::DPSLStarted()
{;}
void ExN07SteppingVerbose::DPSLUserLimit()
{;}
void ExN07SteppingVerbose::DPSLPostStep()
{;}
void ExN07SteppingVerbose::DPSLAlongStep()
{;}
void ExN07SteppingVerbose::VerboseTrack()
{;}
void ExN07SteppingVerbose::VerboseParticleChange()
{;}