Import Geant4 11.0.1 source tree

This commit is contained in:
Gabriele Cosmo
2022-03-23 08:25:50 +01:00
parent 84f33a068c
commit de4f28d823
234 changed files with 61815 additions and 61766 deletions
+8 -2
View File
@@ -15,10 +15,16 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
22 December 2021 - Pedro Arce (ascii-V10-07-05)
- Correct wrong automatic conversion degree-radian for G4Polycone phi angle
parameter.
22 November 2021 - P. Arce (ascii-V10-07-04)
- Add G4MultiUnion and G4ScaledSolid from user contribution (Pooria Heidary): GitHub PR #28
- Add G4MultiUnion and G4ScaledSolid from user contribution (Pooria Heidary):
GitHub PR #28
- G4tgbVolume.cc: correct lacking conversion degree-radian in polycone
- G4tgbMaterialSimple.cc,G4tgrMaterial.cc: Change STP_Temperature to NTP_Temperature to be consistent with NIST materials
- G4tgbMaterialSimple.cc,G4tgrMaterial.cc: Change STP_Temperature to
NTP_Temperature to be consistent with NIST materials
16 November 2021 - G. Cosmo (ascii-V10-07-03)
- Change prefix to free math functions in G4tgrEvaluator source, to avoid
+2 -2
View File
@@ -404,7 +404,7 @@ G4VSolid* G4tgbVolume::FindOrConstructG4Solid(const G4tgrSolid* sol)
{
phiTotal = twopi;
}
solid = new G4Polycone(sname, solParam[0], phiTotal*deg, // start,delta-phi
solid = new G4Polycone(sname, solParam[0], phiTotal, // start,delta-phi
nplanes, // sections
&((*z_p)[0]), &((*rmin_p)[0]), &((*rmax_p)[0]));
}
@@ -423,7 +423,7 @@ G4VSolid* G4tgbVolume::FindOrConstructG4Solid(const G4tgrSolid* sol)
phiTotal = twopi;
}
solid =
new G4GenericPolycone(sname, solParam[0], phiTotal*deg, // start,delta-phi
new G4GenericPolycone(sname, solParam[0], phiTotal, // start,delta-phi
nplanes, // sections
&((*R_c)[0]), &((*Z_c)[0]));
}