Import Geant4 1.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:34:16 +02:00
parent ca1c8cb059
commit 103bda00c8
2654 changed files with 29719 additions and 20203 deletions
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersistentEx02.cc,v 1.2.2.1 1999/12/07 20:47:20 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
//
// --------------------------------------------------------------
File diff suppressed because it is too large Load Diff
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02DetectorConstruction.hh,v 1.3 1999/11/29 18:15:28 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02DetectorConstruction_h
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02EventAction.hh,v 1.3 1999/11/29 18:23:31 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02PhysicsList.hh,v 1.3 1999/11/29 18:23:32 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02PhysicsList_h
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02PrimaryGeneratorAction.hh,v 1.3 1999/11/29 18:23:32 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02PrimaryGeneratorAction_h
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02RunAction.hh,v 1.3 1999/11/29 18:23:32 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02RunAction_h
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02StackingAction.hh,v 1.2 1999/11/29 18:23:33 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02StackingAction_H
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02TrackerHit.ddl,v 1.4 1999/11/29 19:27:52 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02TrackerHit_h
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02TrackerHitsCollection.ddl,v 1.3 1999/11/29 18:23:33 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02TrackerHitsCollection_h
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02TrackerSD.hh,v 1.3 1999/11/29 18:23:33 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#ifndef PersEx02TrackerSD_h
@@ -46,8 +46,8 @@ public:
int evt_id = pevent_iterator->GetEventID();
int n_pvertex = pevent_iterator->GetNumberOfPrimaryVertex();
cout << endl << "Reading event #" << evt_id << ":" << endl;
cout << " No. of primary vertex: " << n_pvertex << endl;
cout << G4endl << "Reading event #" << evt_id << ":" << G4endl;
cout << " No. of primary vertex: " << n_pvertex << G4endl;
// Loop for all primary vertex in this event
for ( int i = 0; i < n_pvertex; i++ )
@@ -55,9 +55,9 @@ public:
HepRef(G4PPrimaryVertex) pvertex =
pevent_iterator->GetPrimaryVertex(i);
cout << " ObjectID of the primary vertex: "
<< pvertex.sprint() << endl;
<< pvertex.sprint() << G4endl;
cout << " No. of particle in the primary vertex: "
<< pvertex->GetNumberOfParticle() << endl;
<< pvertex->GetNumberOfParticle() << G4endl;
for ( int j = 0; j < pvertex->GetNumberOfParticle() ; j++ )
{
@@ -65,7 +65,7 @@ public:
cout << " PDGcode: " << particle->GetPDGcode()
<< " Px = " << particle->GetPx()
<< " Py = " << particle->GetPy()
<< " Pz = " << particle->GetPz() << endl;
<< " Pz = " << particle->GetPz() << G4endl;
}
}
@@ -73,7 +73,7 @@ public:
const HepRef(G4PHCofThisEvent) hcte = pevent_iterator->GetHCofThisEvent();
if( hcte != 0 )
{
cout << " ObjectID of the Hit Collections: " << hcte.sprint() << endl;
cout << " ObjectID of the Hit Collections: " << hcte.sprint() << G4endl;
// Capacity of the Hit Collections VArray
// G4int numHC = hcte->GetCapacity();
@@ -81,7 +81,7 @@ public:
// Actual number of Hit Collections in this event
G4int numHCact = hcte->GetNumberOfCollections();
cout << " No. of the Hit Collections: " << numHCact << endl;
cout << " No. of the Hit Collections: " << numHCact << G4endl;
for( G4int i = 0; i<numHCact; i++)
{
const HepRef(PersEx02TrackerHitsCollection) aHC =
@@ -90,19 +90,19 @@ public:
{
cout << " Hit Collection[" << i << "]: Name: "
<< aHC->GetName();
cout << " Sensitive Detector: " << aHC->GetSDname() << endl;
cout << " Sensitive Detector: " << aHC->GetSDname() << G4endl;
HepRef(PersEx02TrackerHit) aHit = aHC->element(0);
if( aHit != 0 )
{
cout << " Number of hits: " << aHC->size() << endl
<< " Edep of the first hit: " << aHit->GetEdep() << endl;
cout << " Number of hits: " << aHC->size() << G4endl
<< " Edep of the first hit: " << aHit->GetEdep() << G4endl;
}
}
}
}
else
{ cout << " No Hit Collections for this event." << endl; }
{ cout << " No Hit Collections for this event." << G4endl; }
}
message("End of loop over events.");
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: PersEx02DetectorConstruction.cc,v 1.3 1999/11/29 18:33:27 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// $Id: PersEx02DetectorConstruction.cc,v 1.3.4.1 1999/12/08 17:33:09 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "PersEx02DetectorConstruction.hh"
@@ -32,7 +32,7 @@ PersEx02DetectorConstruction::~PersEx02DetectorConstruction()
G4VPhysicalVolume* PersEx02DetectorConstruction::Construct()
{
G4cout << " -- Tracker type sensitive detector" << endl;
G4cout << " -- Tracker type sensitive detector" << G4endl;
//--------- Material definition ---------
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: PersEx02EventAction.cc,v 1.3 1999/11/29 18:33:28 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// $Id: PersEx02EventAction.cc,v 1.3.4.1 1999/12/08 17:33:09 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "PersEx02EventAction.hh"
@@ -46,7 +46,7 @@ void PersEx02EventAction::BeginOfEventAction(const G4Event* )
void PersEx02EventAction::EndOfEventAction(const G4Event* evt)
{
G4cout << ">>> Event " << evt->GetEventID() << endl;
G4cout << ">>> Event " << evt->GetEventID() << G4endl;
G4PHCofThisEvent* pHCE = G4PersistentHitMan::GetPersistentHitMan()
->GetCurrentPHCofThisEvent();
@@ -55,21 +55,21 @@ void PersEx02EventAction::EndOfEventAction(const G4Event* evt)
HepRef(PersEx02TrackerHitsCollection) pTHC2
= (HepRef(PersEx02TrackerHitsCollection))(pHCE->GetHC(colID2));
G4cout << "Event : " << evt->GetEventID() << endl
G4cout << "Event : " << evt->GetEventID() << G4endl
<< pTHC1->GetSDname() << "/" << pTHC1->GetName() << " "
<< "Number of hits " << pTHC1->size() << endl;
<< "Number of hits " << pTHC1->size() << G4endl;
if( pTHC1->size() > 0 )
{
HepRef(PersEx02TrackerHit) aHit = pTHC1->element(0);
G4cout << " Edep of the first Hit " << aHit->GetEdep() << endl;
G4cout << " Edep of the first Hit " << aHit->GetEdep() << G4endl;
}
G4cout << pTHC2->GetSDname() << "/" << pTHC2->GetName() << " "
<< "Number of hits " << pTHC2->size() << endl;
<< "Number of hits " << pTHC2->size() << G4endl;
if( pTHC2->size() > 0 )
{
HepRef(PersEx02TrackerHit) aHit = pTHC2->element(0);
assert(aHit!=NULL);
G4cout << " Edep of the first Hit " << aHit->GetEdep() << endl;
G4cout << " Edep of the first Hit " << aHit->GetEdep() << G4endl;
}
G4PersistencyManager* persM
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: PersEx02PhysicsList.cc,v 1.3 1999/11/29 18:33:28 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// $Id: PersEx02PhysicsList.cc,v 1.3.4.3 1999/12/14 07:07:43 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "globals.hh"
@@ -25,7 +25,7 @@
#include "G4Material.hh"
#include "G4MaterialTable.hh"
#include "G4ios.hh"
#include <iomanip.h>
#include "g4std/iomanip"
PersEx02PhysicsList::PersEx02PhysicsList(): G4VUserPhysicsList()
@@ -186,7 +186,7 @@ void PersEx02PhysicsList::SetCuts()
{
if (verboseLevel >0){
G4cout << "PersEx02PhysicsList::SetCuts:";
G4cout << "CutLength : " << defaultCutValue/mm << " (mm)" << endl;
G4cout << "CutLength : " << defaultCutValue/mm << " (mm)" << G4endl;
}
// " G4VUserPhysicsList::SetCutsWithDefault" method sets
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02PrimaryGeneratorAction.cc,v 1.3 1999/11/29 18:33:28 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "PersEx02PrimaryGeneratorAction.hh"
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02RunAction.cc,v 1.3 1999/11/29 18:33:28 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "PersEx02RunAction.hh"
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02StackingAction.cc,v 1.2 1999/11/29 18:33:29 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "PersEx02StackingAction.hh"
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02TrackerHit.cc,v 1.3 1999/11/29 18:33:29 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "PersEx02TrackerHit.hh"
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02TrackerHitsCollection.cc,v 1.3 1999/11/29 18:33:29 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#include "PersEx02TrackerHitsCollection.hh"
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: PersEx02TrackerSD.cc,v 1.4 1999/12/02 17:05:17 morita Exp $
// GEANT4 tag $Name: geant4-01-00 $
// GEANT4 tag $Name: geant4-01-01 $
//
#include <assert.h>