Import Geant4 3.0.0 source tree
This commit is contained in:
@@ -16,6 +16,14 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
5th October 2000 Peter Gumplinger (op-V02-00-02)
|
||||
- G4OpAbsorption.cc: Comment out warning - No Absorption length specified.
|
||||
|
||||
3rd August 2000 Gabriele Cosmo (op-V02-00-00r)
|
||||
- G4OpBoundaryProcess.cc: changed RandGauss to G4RandGauss to fix problem
|
||||
of events' reproducibility.
|
||||
- Syncronized with HEAD (only CVS headers changes).
|
||||
|
||||
21th October 1999 Peter Gumplinger (op-V00-01-01)
|
||||
- G4OpBoundaryProcess.hh and G4OpBoundaryProcess.cc have been modified
|
||||
(Fill NewMomentum/NewPolarization in DoAbsorption. These members need
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4OpAbsorption.hh,v 1.4.4.1 1999/12/07 20:52:51 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-02-00 $
|
||||
// $Id: G4OpAbsorption.hh,v 1.5 1999/12/15 14:53:44 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// Optical Photon Absorption Class Definition
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4OpBoundaryProcess.hh,v 1.4.4.1 1999/12/07 20:52:51 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-02-00 $
|
||||
// $Id: G4OpBoundaryProcess.hh,v 1.5 1999/12/15 14:53:44 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
//
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4OpRayleigh.hh,v 1.3.4.1 1999/12/07 20:52:51 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-02-00 $
|
||||
// $Id: G4OpRayleigh.hh,v 1.4 1999/12/15 14:53:44 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
//
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4OpAbsorption.cc,v 1.1.10.1.2.1 1999/12/08 17:35:13 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-02-00 $
|
||||
// $Id: G4OpAbsorption.cc,v 1.3 2000/09/19 03:19:17 gum Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// Optical Photon Absorption Class Implementation
|
||||
@@ -17,7 +17,9 @@
|
||||
// Version: 1.0
|
||||
// Created: 1996-05-21
|
||||
// Author: Juliet Armstrong
|
||||
// Updated: 1997-04-09 by Peter Gumplinger
|
||||
// Updated: 2000-09-18 by Peter Gumplinger
|
||||
// > comment out warning - "No Absorption length specified"
|
||||
// 1997-04-09 by Peter Gumplinger
|
||||
// > new physics/tracking scheme
|
||||
// 1998-08-25 by Stefano Magni
|
||||
// > Change process to use G4MaterialPropertiesTables
|
||||
@@ -80,7 +82,7 @@ G4OpAbsorption::PostStepDoIt(const G4Track& aTrack, const G4Step& aStep)
|
||||
aParticleChange.SetStatusChange(fStopAndKill);
|
||||
|
||||
if (verboseLevel>0) {
|
||||
G4cout << "\n** Photon Absorbed! **" << G4endl;
|
||||
G4cout << "\n** Photon absorbed! **" << G4endl;
|
||||
}
|
||||
return G4VDiscreteProcess::PostStepDoIt(aTrack, aStep);
|
||||
}
|
||||
@@ -113,12 +115,12 @@ G4double G4OpAbsorption::GetMeanFreePath(const G4Track& aTrack,
|
||||
GetProperty (thePhotonMomentum);
|
||||
}
|
||||
else {
|
||||
G4cout << "No Absorbtion length specified" << G4endl;
|
||||
// G4cout << "No Absorption length specified" << G4endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
G4cout << "No Absorbtion length specified" << G4endl;
|
||||
}
|
||||
// G4cout << "No Absorption length specified" << G4endl;
|
||||
}
|
||||
|
||||
return AttenuationLength;
|
||||
}
|
||||
|
||||
@@ -326,7 +326,7 @@ G4OpBoundaryProcess::GetFacetNormal(const G4ThreeVector& Momentum,
|
||||
|
||||
do {
|
||||
do {
|
||||
alpha = RandGauss::shoot(0.0,sigma_alpha);
|
||||
alpha = G4RandGauss::shoot(0.0,sigma_alpha);
|
||||
} while (G4UniformRand()*f_max > sin(alpha) || alpha >= halfpi );
|
||||
|
||||
G4double phi = G4UniformRand()*twopi;
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4OpRayleigh.cc,v 1.1.10.1.2.1 1999/12/08 17:35:14 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-02-00 $
|
||||
// $Id: G4OpRayleigh.cc,v 1.2 1999/12/15 14:53:45 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
//
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user